We have a WCF service (with no security) that is being accessed by an MVC3 website.
On the developer machines we have no problems with it but when our TeamCity setup bui
I had that problem too, what I did is:
Open the file yourService.svc and make sure that your service is configured, and the code behind looks like this:
<%@ ServiceHost Language="C#" Debug="true" Service="YourNamespace.yourService.svc" CodeBehind="yourService.svc.cs" %>
I fixed my issue that way. I hope it helps!