Web服务响应XML检索“DestinationUnreachable”消息

时间:2012-12-22 07:03:32

标签: wcf

我在SoapUI工具中处理Request XML时,在Response XML中收到以下消息。对于与Application关联的所有类型的服务,我们都收到了相同的消息。

<s:Envelope xmlns:s="http://www.w3.org/2003/05/soap-envelope" xmlns:a="http://www.w3.org/2005/08/addressing">
   <s:Header>
      <a:Action s:mustUnderstand="1">http://www.w3.org/2005/08/addressing/soap/fault</a:Action>
   </s:Header>
   <s:Body>
      <s:Fault>
         <s:Code>
            <s:Value>s:Sender</s:Value>
            <s:Subcode>
               <s:Value>a:DestinationUnreachable</s:Value>
            </s:Subcode>
         </s:Code>
         <s:Reason>
            <s:Text xml:lang="en-US">The message with To '' cannot be processed at the receiver, due to an AddressFilter mismatch at the EndpointDispatcher.  Check that the sender and receiver's EndpointAddresses agree.</s:Text>
         </s:Reason>
      </s:Fault>
   </s:Body>
</s:Envelope>

任何人都知道我们应该怎么做才能解决这个问题? 在此先感谢。

2 个答案:

答案 0 :(得分:15)

问题是因为Request消息缺少To标头。 在消息编辑器上,在请求消息窗口的下方,单击按钮WS-A。 然后选中“添加默认wsa:到

复选框

现在运行您的请求,服务运行正常。

希望有所帮助

答案 1 :(得分:1)

如果您发布了请求XML(以及WSDL的相关部分),这将有所帮助,但从它的外观来看,它是一个寻址问题。检查您是否在客户端和服务器上使用相同的SOAP版本(1.1与1.2),WS-Addressing的使用是否一致等。另外,尝试生成WCF客户端(使用svcutil / Add Service Reference),使用该客户端发送消息,捕获它(例如使用Fiddler),并且 - 假设它有效 - 将它与SoapUI生成的消息进行比较。