At this point I have a WCF Service working using Cassini/IIS Express with a .NET client when I run it from Visual Studio, but am having difficulties when I try to publish it to directly IIS. For some reason I cannot connect to the WCF Service. I have been researching how to publish by looking at these Microsoft online docs:
https://learn.microsoft.com/en-us/dotnet/framework/wcf/wcf-service-publishing
For now I am just trying to publish it locally, where I choose to publish it to the File System
to C:\inetpub\wwwroot\GeoService
but when I try to browse to the server I only get errors like:
BTW, I have tried browsing to these sites:
http://localhost/GeoService.svc
http://localhost/GeoService/
http://localhost/GeoService/GeoService.svc
Where I get errors like:
HTTP Error 404.0 - Not Found
HTTP Error 403.14 - Forbidden
Please note that the full source code is here:
https://github.com/john1726/WcfEndToEnd.git
What am I missing? Does anyone have any suggestions? TIA.