Configurare il Proxy nel web.config

Modified on 2012/04/05 12:00 by stefano — Categorized as: Uncategorized

Aggiungere nel web.config dopo configsection:
<configuration> 
   <system.net> 
     <defaultProxy> 
        <proxy 
           proxyaddress = "http://proxyserver:80" 
           bypassonlocal = "true" /> 
     </defaultProxy> 
  </system.net> 
</configuration>