We are using Visual Studio 2012 & trying to Publish a web application. If we try to validate the connection we are returned with error:
Web deployment task failed. could not connect to the remote computer ([Server trying to connect]). On the remote computer, make sure that Web Deploy is installed and the required process ("Web Management Service") is started. Learn more at ....
If we bypass our proxy we receive a successful connection.
We have found two articles where you can configure the devenv.exe.config file by adding proxy element to the config file; we have tried both elements separately !!
<system.net> <defaultProxy useDefaultCredentials="true" enabled="true"> <proxy usesystemdefault="True" /> </defaultProxy>
<system.net> <defaultProxy enabled="true" useDefaultCredentials="true"> <proxy bypassonlocal="True" proxyaddress="http://yourproxy:port"/> </defaultProxy> </system.net>
We have configured our I.E. 10 settings: LAN settings to "Automatically Detect Settings"
We are trying to find a way to bypass our proxy server & use browser settings, can anyone assist ?