Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Visual studio 2010 Premium installed on Windows 7:

when try to connect for online gallery or online template, give me error like: Cannot search for online exensions because an error occured while trying to contact the server

and ask me enable access to extensions on the vistual studio gallery ....

It did enabled in Extension Manager Tools/Options page. Internet connection was fine.

My computer firewall was turned off. I have proxy to connect to internet but it's working fine when browser connect to internet(even internal browser in vs2010 working fine). So where is the place for VS2010 to set up proxy for extension connection?

On another computer: Windows 7, VS2010 utilmate trail version: this was fine.

share|improve this question
I added the config additions from all three answers before mine worked XD – scottm Jun 30 '11 at 16:55

5 Answers

up vote 79 down vote accepted

Try adding the following to devenv.exe.config (in Common7\IDE folder):

<configuration>
  <system.net>
    <settings>
      <servicePointManager expect100Continue="false" />
    </settings>
  </system.net>
</configuration>

This is a known issue with some proxy servers that will be addressed in a future release.

share|improve this answer
1  
Thanks. I am using ipcop as my home firewall, and visual studio 2010 extension manager was not able to connect to the internet. This fixes the problem for the error message "trying to connect." – spinner_den Feb 6 '11 at 2:37
using this alone works among the other 2 solutions.. thanks Aaron Marten.. – saravanan Jul 4 '11 at 9:21
1  
In my case it took an extra step: I had to configure the right proxy in my InternetExplorer as well, setting it in my default browser did not help. Is probably equivalent to setting your system default network proxy. – Simon D. Aug 15 '11 at 13:21
This worked for me. The only thing is if you already have a system.net node, then only add the <servicePointManager expect100Continue="false" /> under the setting node. – VoodooChild Sep 15 '11 at 19:25
1  
Thanks, I had the same problem in C# Express 2010, the file to modify was VCSExpress.exe.config – UberNeet Dec 5 '11 at 23:16
show 2 more comments

The following worked for me, I got this from the blog entry listed below.

in the devenv.exe.config file, in the <system.net> section add:

<defaultProxy useDefaultCredentials="true" enabled="true">
    <proxy usesystemdefault="True" />
</defaultProxy>

reference: http://gurustop.net/blog/2010/08/10/visual-studio-2010-extension-manager-online-gallery-behind-internet-proxy/

share|improve this answer

I had to do a bit of all the above to get mine working. My system.net settings:-

<system.net>
    <defaultProxy useDefaultCredentials="true" enabled="true">
        <proxy proxyaddress="http://your.proxyserver.ip:port"/>
    </defaultProxy>
    <settings>
        <ipv6 enabled="true"/>
        <servicePointManager expect100Continue="false" />
    </settings>
</system.net>
share|improve this answer

In my case, Visual Studio refused to read the settings from internet explorer. I finally got it to work by explicitely giving the url to the proxy and setting the servicePointManager expect100Continue to false. To manually add the proxy address, the xml looks like this:

<defaultProxy>
    <proxy proxyaddress="http://your.proxyserver.ip:port"/>
</defaultProxy>
share|improve this answer

For me what worked was going into Internet Explorer, opening the Tools > Internet Options > Connections > LAN Settings dialog, and changing the state of the 'Automatcially detect settings' and the proxy server settings. Depending on your connection type you may need to change these settings to get this working.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.