配接器 WSDL 檔案
在 [新增配接器中繼資料精靈] 中,會選取 [Web 服務描述語言] (WSDL) 檔案,並在 [ 選取要匯入的服務 ] 頁面上輸入。 該精靈會讀取由服務公開並由使用者選取的 WSDL 檔案。 然後便會在 BizTalk 專案中建立並新增一個 XSD 檔案,以及一個協調流程。
在範例檔案配接器中,Service1.wsdl 檔案包含BizTalk Server新增至專案的 XSD 定義。 您可以選擇修改 Service1.wsdl 檔案,或是建立您自己的 WSDL 檔案 (其中包含新增至 BizTalk 專案的 XSD 定義)。
下列程式碼來自於 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>