Team Foundation Server Error TF30177 : Team Project Creation Failed

Topic(s)
Audience

Everyone

When you create your first project, you may get an error during the creation process. When you look at the log file and see a “proxy error” message detail it may be to do with the way that TFS installs.

I  many large networks you can’t connect to the server in the browser if you use the server name. This is because the proxy server is checking DNS for the name and unless you get every server in your company added to the proxy PAC file, you will get an error. To see if this is the issue try putting the server name into the browser:

http://myServerName.

If you get the error then you should try the FQDN:

http://myServerName.myInternalDomain.com

If this work then you need to change the URL’s within TFS that it uses to define these calls. You can check what the current settings are by:

  1. Open http://tfs01.uk.company.com:8080/Services/v1.0/Registration.asmx in your browser.
  2. Click on GetRegistrationEntries.
  3. Then click on Invoke.

Save (or just view) the resultant XML so you can have a look at it. There are two section of importance here. One is the Reports section which will look like:

<RegistrationEntry>
  <Type>Reports</Type>
  <ServiceInterfaces>
    <ServiceInterface>
      <Name>BaseReportsUrl</Name>
      <Url>http://[serverName]/Reports</Url>
    </ServiceInterface>
    <ServiceInterface>
      <Name>DataSourceServer</Name>
      <Url>[serverName]</Url>
    </ServiceInterface>
    <ServiceInterface>
      <Name>ReportsService</Name>
      <Url>http://[serverName]/ReportServer/ReportService.asmx</Url>
    </ServiceInterface>
  </ServiceInterfaces>
  <Databases />
  <EventTypes />
  <ArtifactTypes />
  <RegistrationExtendedAttributes />
</RegistrationEntry>

The second is the is the WSS section that is in the same format.

Now, we have established that [serverName] will not work so we will have to update TFS with the new details. To do this you need to:

  1. Create an XML file called RSRegister.xml with just the xml above.
  2. Modify the server name from [serverName] to the FQDN of the server and save it.
  3. on the TFS server you need to open a command prompt and execute the following:
    1. iisreset /stop
    2. cd "%programfiles% Microsoft Visual Studio 2005 Team Foundation ServerTools"
    3. TFSReg.exe RSRegister.xml [yourDataTierServerName]
    4. iisreset /start
  4. Then call the web service above to make sure that the settings are correct.

You can repeat this for the WSS (Windows Sharepoint Services) section.

All done and TFS should work. Although it is worth noting that in my company environment I could then no longer create projects from the TFS App server itself as [serverName] works but the FQDN did not. Typical…

 

Technorati Tags:    

Create a conversation around this article

Share on Facebook
Share on Twitter
Share on Linkdin

Read more

Martin Hinshelwood
In organizational development and team dynamics, Agile (as the Agile Manifesto delineates) and Scrum (as the Scrum Guide outlines) guide teams not by solving their problems but by illuminating the issues that demand attention. These frameworks aim to identify and spotlight the challenges within a team or organization’s processes, effectively …
Martin Hinshelwood
This week, I participated in a Scrum.org Webinar hosted by Sabrina Love (Scrum.org Product Owner) as well as my colleagues, Joanna Płaskonka, Ph.D. and Alex Ballarin to discuss the state of learning and how immersive learning is the future of training. You can watch the video below to hear what …
Martin Hinshelwood
For a long time now I have been searching for that perfect domain that epitomised the vision, the why, of what I am trying to achieve with my customers and the industry at large. Now I have found it in http://nkdagility.com
Martin Hinshelwood
At the MVP Summit I was appalled by the number of people who asked questions about new features for supporting hierarchical tasks! I shared a disgusted look with Peter Provost and we had a quick (and I mean really quick) conversation that resulted in this post. it really comes down …