I have a contract for which i have an basicHttpBinding.
<endpoint address="http://localhost:49654/BookShopService.svc" binding="basicHttpBinding" contract="BookShop.IBookShopService">
</endpoint>
I want to add another endpoint with wsHttpBinding, for the same binding.
What are the steps I have to take? What would be the resulting address?
Just add another endpoint with a different address, it should look like this:
There is a primer on MSDN.