proxy setting for web calls
proxy setting for web calls
For use of Proxy connection in web calls some configuration needs to be set in web.config and the bellow code should be placed inside configuration element.
<system.net>
<defaultProxy>
<proxy
proxyaddress = "10.33.19.14:80"
bypassonlocal = "true" />
</defaultProxy>
</system.net>