0

BizTalk 2010 から Web サービスを呼び出す際に問題が発生しています。チュートリアル、同様の問題に関する多くのフォーラムを読み、推奨事項に従いました。これまでのところ、提供された Web サービスを BizTalk で正常に使用することはできません。

ポート設定の詳細を送信します。

  1. WCF タイプ: WCF-WSHttp

  2. Web サービスはオーケストレーションで使用され、論理ポートは「後で指定」オプションを使用しています

  3. ポートは静的ポートです

  4. 論理ポートで使用される操作名が「LogError」に設定されている -

<wsdl:operation name="LogError"> <soap:operation soapAction="https://www.practicevelocity.com/PVLoggingService/LogError" style="document" /> <wsdl:input>

  1. 一般タブ、SOAP アクション ヘッダーの設定、テキスト ボックス、単一のアクション「soapAction」が上記の文字列を使用して指定されます。つまり、- https://www.practicevelocity.com/PVLoggingService/LogError
    セキュリティ タブ、セキュリティ モード == なし

どの設定項目が不適切であるかがわかりません。
さらに提案はありますか?

Error from Event Properties [ Windows log > Application ]
Log Name:      Application
Source:        BizTalk Server
Date:          9/5/2013 4:30:22 PM
Event ID:      5743
Task Category: BizTalk Server
Level:         Warning
Keywords:      Classic
User:          N/A
Computer:      xxxxxxxxxxxxxxxxx.PracticeVelocity.com

Description:

The adapter failed to transmit message going to send port "SendPort_PVInfoLoggingService" with URL "http://devlogging.practicevelocity.com/13_3/EDILogService.asmx?". It will be retransmitted after the retry interval specified for this Send Port. Details:"System.ServiceModel.FaultException: <soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><soap:Fault><soap:Code><soap:Value>soap:MustUnderstand</soap:Value></soap:Code><soap:Reason><soap:Text xml:lang="en">SOAP header Action was not understood.</soap:Text></soap:Reason></soap:Fault></soap:Body></soap:Envelope>
   at Microsoft.BizTalk.Adapter.Wcf.Runtime.WcfClient`2.RequestCallback(IAsyncResult result)".
Event Xml:
<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event">
  <System>
    <Provider Name="BizTalk Server" />
    <EventID Qualifiers="32960">5743</EventID>
    <Level>3</Level>
    <Task>1</Task>
    <Keywords>0x80000000000000</Keywords>
    <TimeCreated SystemTime="2013-09-05T21:30:22.000000000Z" />
    <EventRecordID>58220</EventRecordID>
    <Channel>Application</Channel>
    <Computer>xxxxxxxxxxxxxxx.PracticeVelocity.com</Computer>
    <Security />
  </System>
  <EventData>
    <Data>SendPort_PVInfoLoggingService</Data>
    <Data>http://devlogging.practicevelocity.com/13_3/EDILogService.asmx?</Data>
    <Data>System.ServiceModel.FaultException: &lt;soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;&lt;soap:Body&gt;&lt;soap:Fault&gt;&lt;soap:Code&gt;&lt;soap:Value&gt;soap:MustUnderstand&lt;/soap:Value&gt;&lt;/soap:Code&gt;&lt;soap:Reason&gt;&lt;soap:Text xml:lang="en"&gt;SOAP header Action was not understood.&lt;/soap:Text&gt;&lt;/soap:Reason&gt;&lt;/soap:Fault&gt;&lt;/soap:Body&gt;&lt;/soap:Envelope&gt;
   at Microsoft.BizTalk.Adapter.Wcf.Runtime.WcfClient`2.RequestCallback(IAsyncResult result)</Data>
  </EventData>
</Event>
4

1 に答える 1

1

Add Generated Items, Consume WCF Service を使用し、それをエンドポイントにポイントすると、2 つのバインディング ファイル {servicename}.BindingInfo.xml および {servicename}_Custom.BindingInfo.xml が生成されます。これらのいずれかをインポートすると、完全かつ正しく構成されたポートが得られます。名前は、名前を変更したい自動生成されたものになります。

于 2013-09-10T23:17:22.360 に答える