다음을 통해 공유


어댑터 WSDL 파일

어댑터 메타데이터 추가 마법사에서 WSDL(Web Services Description Language) 파일이 선택되고 가져올 서비스 선택 페이지에 입력됩니다. 이 마법사는 서비스에서 노출하고 사용자가 선택한 WSDL 파일을 읽습니다. 그런 다음 이 마법사는 BizTalk 프로젝트에 XSD 파일 및 오케스트레이션을 만들고 추가합니다.

샘플 파일 어댑터에서 Service1.wsdl 파일에는 BizTalk Server 프로젝트에 추가하는 XSD 정의가 포함되어 있습니다. Service1.wsdl 파일을 수정하거나 XSD 정의를 포함하는 사용자 고유의 WSDL 파일을 만들어 BizTalk 프로젝트에 추가할 수 있습니다.

다음 코드는 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>