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:
- Open http://tfs01.uk.company.com:8080/Services/v1.0/Registration.asmx in your browser.
- Click on GetRegistrationEntries.
- 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:
- Create an XML file called RSRegister.xml with just the xml above.
- Modify the server name from [serverName] to the FQDN of the server and save it.
- on the TFS server you need to open a command prompt and execute the following:
iisreset /stopcd "%programfiles% Microsoft Visual Studio 2005 Team Foundation ServerTools"TFSReg.exe RSRegister.xml [yourDataTierServerName]- i
isreset /start
- 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: ALM TFS VS 2005
Smart Classifications
Each classification [Concepts, Categories, & Tags] was assigned using AI-powered semantic analysis and scored across relevance, depth, and alignment. Final decisions? Still human. Always traceable. Hover to see how it applies.
What to read next
Detecting agile theatre with real delivery signals
Why Most Companies Operating Models Fail in Dynamic Markets
A concise comparison of Predictive and Adaptive Operating Models, explaining why traditional structures fail in dynamic markets and how …
Don’t Manage Dependencies, Remove Them
Explains why dependencies are a sign of poor system design and outlines steps to eliminate them by aligning teams, clarifying ownership, and …
The Estimation Trap: How Tracking Accuracy Undermines Trust, Flow, and Value in Software Delivery
Tracking estimation accuracy in software delivery leads to mistrust, fear, and distorted behaviours. Focus on customer value, flow, and …
Flow of Value vs Flow of Work – Misnomer or Useful Shorthand?
Compares “flow of value” and “flow of work” in Kanban, explaining why only validated outcomes count as value and stressing the need for …
Why Outsourcing DevOps Fails, and How Real Engineering Excellence Starts With Your Team
Avoid DevOps vendor lock-in, discover how true engineering excellence starts with partnership, not outsourcing. Ready to transform your …