我已经继承了一个应用程序,并试图弄清楚如何配置Web服务端点。我已经查看了讨论基本地址和无文件配置here以及此article的链接,但我不清楚这是否在IIS上使用虚拟目录。我在哪里或哪里可以找到服务端点的URL?我的web.config中没有设置baseAddress或relativeAddress。这是我在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>
我是否需要远程进入测试IIS服务器并进行搜索?