Sunday 13 October 2013

Windows service on Local Computer started and then stopped error

Problem
A Windows service hosting a WCF service starts and stops immediately without writing to the Windows Application Event Log.

Possible cause:
The WCF service exposes an HTTP endpoint which is not authorized in the HTTP access control list (ACL). With some debugging and tracing, the error causing the service to shut down may actually be:

“HTTP could not register URL http://+:8080/MyService/. ...”

Solution
Register the HTTP address in the HTTP ACL by executing the following command in administrator mode:

C:\Windows\system32>netsh http add urlacl url=http://+:8080/MyService/ user=\Everyone
Cheers

Tuesday 1 October 2013

TFS 2008 no longer supported in Visual Studio 2013

Hi folks,

I just learned that TFS 2008 will no longer be supported in Visual Studio 2013.

Unable to connect to TFS 2008 server after updating to 2013 RC
http://connect.microsoft.com/VisualStudio/feedback/details/800671/unable-to-connect-to-tfs-2008-server-after-updating-to-2013-rc

This is good news for my team as we will finally have the opportunity to upgrade our TFS version :)

Cheers