我需要在我的 WCF 服务中配置一个端点。我的服务 URL 类似于。
http://mysite.com/Services/Service1.svc
我想为客户http://mysite.com/MyService
提供使用服务的 URL。
我在下面尝试过,web.config
但它不起作用,当我导航到http://mysite.com/MyService
我收到 404 错误。
<service name="GateApplication.Services">
<host>
<baseAddresses>
<add baseAddress="http://mysite.com/Services/"/>
</baseAddresses>
</host>
<endpoint
address="http://mysite.com/MyService"
binding="wsHttpBinding"
contract="GateApplication.IService1" >
</endpoint>
</service>