Hello!
I've added ServiceContract-class to my .NET dll. After that I've created a web-site in my IIS6 and Service.svc with only one line:
<%@ServiceHost Service="MySpaceName.WCFService" %>
And Web.config:
<system.serviceModel>
<services>
<service name="MySpaceName.WCFService.Service1">
<endpoint address ="" binding="wsHttpBinding" contract="MySpaceName.WCFService.IService1" />
</service>
</services>
</system.serviceModel>
But at http://localhost:81/Service.svc I can see only page no 404 :-(
All dll-s was copied to the directory "bin".
Could you please help me to find my mistake.-- Alexey
View Complete Post