我创建了简单的 WCF 服务并将其端点配置如下。
<services>
<service name="AsynchWCFService.MathOperation">
<endpoint address="MathsOperation" binding="wsHttpBinding" contract="AsynchWCFService.IMathOperation">
<identity>
<dns value="localhost" />
</identity>
</endpoint>
<endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" />
<host>
<baseAddresses>
<add baseAddress="http://localhost:8080/OperationService/" />
</baseAddresses>
</host>
</service>
</services>
我在一个独立的 exe 中托管了这个 WCF 服务。我希望我的服务可以在以下地址访问。
http://localhost:8080/OperationService/MathsOperation/
但服务可在http://localhost:8080/OperationService/
我想使用http://localhost:8080/OperationService/MathsOperation/
链接访问服务。谁能帮我?