Tuesday, July 01, 2008

IIS - Web Application Proxy Settings for internet access

This post is to remind myself the configuration settings required in web.config to enable a web application to access the internet via a proxy.

Within the Configuration node in web.config for the web application...


<system.net>
<defaultproxy>
<proxy bypassonlocal="true" proxyaddress="http://ProxyAddress:PortNumber">
</defaultproxy>
</system.net>


No comments: