アダプター WSDL ファイル
アダプター メタデータの追加ウィザードで、Web サービス記述言語 (WSDL) ファイルが選択され、[ インポートするサービスの選択 ] ページで入力します。 ウィザードは、サービスによって公開され、ユーザーが選択した WSDL ファイルを読み取ります。 その後、XSD ファイルとオーケストレーションを作成して BizTalk プロジェクトに追加します。
サンプル ファイル アダプターの Service1.wsdl ファイルには、プロジェクトに追加BizTalk Server XSD 定義が含まれています。 Service1.wsdl ファイルを変更することも、BizTalk プロジェクトに追加する XSD 定義を含む独自の WSDL ファイルを作成することもできます。
次のコードは、Service1.wsdl ファイルの一部です。
<?xml version="1.0" encoding="utf-8"?>
<definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:s0="http://tempuri.org/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" targetNamespace="http://tempuri.org/" xmlns="http://schemas.xmlsoap.org/wsdl/">
<types>
<s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/">
<s:element name="GetTaxID">
<s:complexType />
</s:element>
<s:element name="GetTaxIDResponse">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="GetTaxIDResult" type="s:string" />
</s:sequence>
</s:complexType>
</s:element>
<s:element name="GetPayStub">
<s:complexType />
</s:element>
<s:element name="GetPayStubResponse">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="GetPayStubResult" type="s:string" />
</s:sequence>
</s:complexType>
</s:element>
<s:element name="GetTaxInfo">
<s:complexType />
</s:element>