basicHttpBinding to wsHttpBinding over SSL



在我用soapUI测试一个Web服务之前,它工作正常。但是现在Web服务被basicHttpBinding更改为wsHttpBinding over SSL。现在我正在尝试执行以下异常的网络服务。 我在目标 c 中使用网络服务 url。我现在不知道如何在SOAP UI和iPhone中进行测试和执行。任何人请告诉我我该如何解决。

<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-AU">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>

尚未发布绑定配置。默认的 WSHttpBinding 设置在 WCF(消息级别的 SPNego)之外是可互操作的。一般的基本绑定更容易互操作。

最新更新