I've inherited an application and was trying to figure out how the web service endpoints are configured. I've looked at links that discuss a base address and a file-less configuration here and this article but I'm unclear if this is using a virtual directory on IIS or not. What is or where can I find the url to the service endpoints? There's no baseAddress or relativeAddress set up in my web.config. Here's what I have in the web.config:
<services>
<service name="ecom.SomeServices.ServiceImplementation.SomeService" behaviorConfiguration="SomeService.SomeServiceBehavior">
<endpoint address="/ShippingMethodMapping" binding="basicHttpBinding" bindingName="LargeFileHttpBinding" contract="ecom.SomeServices.ServiceContracts.IShippingMethodMappingService" behaviorConfiguration="LargeEndpointBehavior" bindingConfiguration="LargeFileHttpBinding"/>
<endpoint address="/PaymentMethodMapping" binding="basicHttpBinding" bindingName="LargeFileHttpBinding" contract="ecom.SomeServices.ServiceContracts.IPaymentMethodMappingService" behaviorConfiguration="LargeEndpointBehavior" bindingConfiguration="LargeFileHttpBinding"/>
</service>
</services>
Do I need to remote into the test IIS server and poke around?