Issue
When using Archive Shuttle Cloud it may be necessary to configure the Archive Shuttle modules to communicate with the Archive Shuttle via a web proxy. This article explains how to do that.
Solution
Each of the module .exe.config files can be modified as shown below:
<startup><supportedRuntime version="v2.0.50727"/></startup> <system.net> <defaultProxy enabled="true" useDefaultCredentials="true"> <proxy proxyaddress="http://proxy:8080" /> </defaultProxy> <connectionManagement> <add address="*" maxconnection="100"/> </connectionManagement> </system.net>
Sometimes is needed to bypass some of the addresses, and therefore it needs to add the addresses you want to bypass into the config file:
<system.net> <defaultProxy enabled="true"> <bypasslist> <add address="[a-z]+\.contoso\.com" /> <add address="192\.168\..*" /> </bypasslist> <proxy bypassonlocal="True" proxyaddress="http://proxy:8080"/> </defaultProxy> </system.net>
Note:
The red parts are only needed if a proxy is used, but it is not configured in Internet Explorer
Review MS tech note for more details about bypass list.