Do I need to add a default proxy node to my Windows ASP.NET 3.5 hosting Web.config file?
Print this Article
Comment on this Article
Last Updated:
March 4, 2008 11:27 AM
No, the following code is added to the web.config file of all ASP.NET 3.5 hosting accounts:
<system.net>
<defaultProxy>
<proxy usesystemdefault="False" proxyaddress="http://proxy.shr.secureserver.net:3128" bypassonlocal="False" />
</defaultProxy>
</system.net>
<defaultProxy>
<proxy usesystemdefault="False" proxyaddress="http://proxy.shr.secureserver.net:3128" bypassonlocal="False" />
</defaultProxy>
</system.net>
This entry populates your application's proxy settings with the appropriate values.