TFS cannot get a list of team projects

When I try to access my project list from TFS, an error message as shown below

TF31001: Team Foundation cannot get a list of Team Foundation Server 10.0.80.50 team projects. The Team Foundation Server returned the following error: Error creating the web proxy specified in the "system.net/defaultProxy" configuration section.

Has anyone encountered this problem before and how do you solve it?

Thank you in advance

+4
source share
3 answers

Team Explorer connects through the web service to TFS. It looks like you have a problem setting up a proxy server in IE, which is stopping you from connecting to your server.

Try going to one of the web services directly using IE (for example, http: // yourtfsservername: 8080 / Services / v1.0 / ServerStatus.asmx ) and see if you have an error. If so, check the proxy server settings - if they look normal, see if it is possible to exclude access to the TFS server through the proxy server and go directly.

+3
source

I got the same error from unexpected. Spent some time with my colleagues playing different ways to start Visual Studio 2008 and configuration settings. I found several ways to get around this error, although I don’t know what the original reason is. 1) Start VS from the command line as follows: devenv.exe / resetaddin. 2) Comment on the system.net setting in the devenv.exe.config file. Like this:

<system.net> <!-- <settings> <ipv6 enabled="true"/> </settings> --> </system.net> 

They both work. I found that the second option is more continental. Without this installation of ipv6, I'm not sure what else might be affected. But at least I can make an emergency connection to my TFS server to register some files.

+5
source

John Chang's answer was so helpful. I changed the devenv.exe.config file as it mentioned, and was able to connect to TFS. Before that, I even tried reinstalling Team Explorer without any advantages.

0
source

All Articles