TFS 08 - Can't find AgentService.asmx - Stack Overflow most recent 30 from stackoverflow.com 2009-11-26T14:48:41Z http://stackoverflow.com/feeds/question/348669 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/348669/tfs-08-cant-find-agentservice-asmx 0 TFS 08 - Can't find AgentService.asmx Slace 2008-12-08T04:38:00Z 2009-06-11T02:58:33Z <p>We have a notification service running on our TFS server which automatically modifies certain work items when they are created so they are assigned to the right people and so on.</p> <p>Over the weekend a patch was applied to our TFS server and since then the notification service appears to be broken.</p> <p>When ever it runs we get an error in the Event Viewer which indicates there was a problem accessing <code>http://&lt;our-tfs&gt;:8080/Build/v2.0/AgentService.asmx</code>.</p> <p>I've looked in the folder which IIS maps <code>Build</code> to, and it's true, AgentService.asmx does not exist.</p> <p>Does anyone know where that file may get moved to?</p> http://stackoverflow.com/questions/348669/tfs-08-cant-find-agentservice-asmx/349105#349105 1 Answer by Martin Woodward for TFS 08 - Can't find AgentService.asmx Martin Woodward 2008-12-08T10:32:55Z 2008-12-08T10:32:55Z <p>The AgentService.asmx is the web service hosted by the Visual Studio Team Foundation Build service on a team foundation build agent. The Build Agent service actually makes this URL available via WCF and so does't show up under IIS. By default the build agent is configured to run on port 9191 though so that it does not conflict with the default port for Team Foundation Server application tier (8080) if a build agent is also installed on the same machine hosting Team Foundation Server.</p> <p>Do you want to check that the service "Visual Studio Team Foundation Build" is running? If there has been an error in communicating with the build agent then you may have re-set the status of the agent to get TFS to talk to it again (by right clicking on the Builds node in Team Explorer and selecting Build Agents...)</p> <p>However, I'm not sure that this event is your problem. Do you happen to know which patch was recently applied to your TFS or where the web service is that you get TFS to send an event to?</p> <p>Good luck,</p> <p>Martin.</p> http://stackoverflow.com/questions/348669/tfs-08-cant-find-agentservice-asmx/979098#979098 0 Answer by Slace for TFS 08 - Can't find AgentService.asmx Slace 2009-06-11T02:58:33Z 2009-06-11T02:58:33Z <p>Turned out that the problem was a miss-configured Build Agent (was pointing to the wrong server). Full details can be found on a blog post here: <a href="http://feedproxy.google.com/~r/KarlKopp/~3/VFmWhwwGyUk/tfs-the-case-of-the-phantom-build-agent" rel="nofollow">http://feedproxy.google.com/~r/KarlKopp/~3/VFmWhwwGyUk/tfs-the-case-of-the-phantom-build-agent</a></p>