Forgot to mention that I'm using FTP
for open web site
I'm working with Visual Studio 2010 Ultimate on a web project.
The problem come when I need to work in an office where internet connection is done via a Proxy server
.
I've tried any kind of suggested changes to devenv.exe.config
but using a TCPViewer I can see that any request from devenv.exe aren't done trough the proxy but directly and I can't open the remote website.
It seems that VS2010 doesn't read the configuration setting. Someone had same issue? It's possible to resolve it?
Edit:
The proxy is wingate and this is the part of config I used:
<system.net>
<defaultProxy useDefaultCredentials="true" enabled="true"> // Tried with/without 'usedefaultCredential' Wingate use IP matching for authorize connections
<proxy proxyaddress="http://Myproxyserverip:8888"/>
</defaultProxy>
<settings>
<ipv6 enabled="true"/>
<servicePointManager expect100Continue="false" /> // Tried with and without this.
</settings>
</system.net>
At the moment the only solution it's to NOT use a proxy server to connect to the internet for open a web site via FTP with VS2010. It seems that Visual Studio 2010 ( also Express version) not use proxy setting for FTP connections.
I didn't be able to find any information or issue for this stuff in microsoft.com site and connect.