我们有几个使用负载均衡器的 Web 服务器。机器在端口 81 上运行 IIS6。在外部,站点可使用端口 80 访问。机器的外部名称和名称不同。
我们得到
System.ServiceModel.EndpointNotFoundException: The message with To '<url>' cannot be processed at the receiver, due to an AddressFilter mismatch at the EndpointDispatcher. Check that the sender and receiver's EndpointAddresses agree.
web.config 的相关部分是:
<endpoint binding="ws2007HttpBinding" bindingConfiguration="MyServiceBinding"
contract="MyService.IMyService" listenUriMode="Explicit" />
我们尝试添加listenUri,但这并没有解决我们的问题。
有任何想法吗?