so i\'m a litle confused over what the service endpoints and host base address is for. In all the examples i have walked through so far they talk about setting up the endpoi
When you host the WCF service on IIS, the base address can only be the URL to the .svc file. If you specify any other base address, it's ignored. You can still specify the relative URI for your endpoints, such as address="basic"
or address = "ws"
. Then the address on the endpoint becomes
and
in this case.