Showing posts with label Visual Studio. Show all posts
Showing posts with label Visual Studio. Show all posts

Wednesday, January 15, 2014

Fixing Visual Studio connection to online galery

If you cannot connect to Visual Studio online gallery or online template and you get an error message like this:

Cannot search for online exensions because an error occured while trying to contact the server

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

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

http://stackoverflow.com/questions/2859148/cannot-connect-to…