File WSDL dell'adapter
Nella procedura guidata Aggiungi metadati adapter è selezionato il file WSDL (Web Services Description Language) e l'input nella pagina Seleziona servizi da importare . La procedura guidata legge i file WSDL esposti dal servizio e selezionati dall'utente. Quindi crea e aggiungere un file XSD e un'orchestrazione al progetto BizTalk.
Nell'adattatore di file di esempio, il file Service1.wsdl contiene le definizioni XSD che BizTalk Server aggiunge al progetto. È possibile scegliere di modificare il file Service1.wsdl o creare un proprio file WSDL contenente le definizioni XSD da aggiungere al progetto BizTalk.
Il codice seguente deriva dal file 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>