I have a WCF Service hosted on IIS. For business reason I cannot post the public URL of this instance, but I'm sure you will get what I mean:
The problem is that in order to reach my endpoint it seems I have include the Service.svc
as part of the path segment, i.e., I have to use URLs like this:
http://<domain>/<app-name>/Service.svc/<relative-path>
How can I avoid this? I mean, I'd like to access my service simply with:
http://<domain>/<app-name>/<relative-path>
I was perfectly able to do this when I was self-hosting the service during development.
Lastly, but this is not-so-transcendental, browsing to the http://<domain>/<AppName>/Service.svc
URL displays the standard service information page:
Is there a way I could also prevent this from being accessible?