0

soapUI で 1 つの Web サービスをテストする前に、問題なく動作します。しかし今、webservice は SSL 経由で basicHttpBinding から wHttpBinding に変更されました。今、私は webservice を実行しようとしていますが、次の例外が発生しています。目標cでWebサービスの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>
4

1 に答える 1

0

バインディング構成を公開していません。既定の WSHttpBinding 設定は、WCF の外部 (メッセージ レベルの SPNego) と相互運用可能であることに注意してください。一般に、基本的なバインディングは相互運用がはるかに簡単です。

于 2013-09-10T15:28:41.077 に答える