datasetws.wsdl

来自「wrox出版社的另一套经典的VB2005数据库编程学习书籍,收集了书中源码,郑重」· WSDL 代码 · 共 224 行

WSDL
224
字号
<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://oakleaf.ws/webservices/datasetws/northwind" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" targetNamespace="http://oakleaf.ws/webservices/datasetws/northwind" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
  <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Demonstration Web service with Web methods that return untyped DataSets. Errors throw SOAP faults.</wsdl:documentation>
  <wsdl:types>
    <s:schema elementFormDefault="qualified" targetNamespace="http://oakleaf.ws/webservices/datasetws/northwind">
      <s:element name="GetAllCustomers">
        <s:complexType />
      </s:element>
      <s:element name="GetAllCustomersResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="GetAllCustomersResult">
              <s:complexType>
                <s:sequence>
                  <s:element ref="s:schema" />
                  <s:any />
                </s:sequence>
              </s:complexType>
            </s:element>
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="GetOrdersByCustomerID">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="CustomerID" type="s:string" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="GetOrdersByCustomerIDResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="GetOrdersByCustomerIDResult">
              <s:complexType>
                <s:sequence>
                  <s:element ref="s:schema" />
                  <s:any />
                </s:sequence>
              </s:complexType>
            </s:element>
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="UpdateCustomersDataSet">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="dsNwind">
              <s:complexType>
                <s:sequence>
                  <s:element ref="s:schema" />
                  <s:any />
                </s:sequence>
              </s:complexType>
            </s:element>
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="UpdateCustomersDataSetResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1" name="UpdateCustomersDataSetResult" type="s:boolean" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="UpdateOrdersDataSet">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="0" maxOccurs="1" name="dsNwind">
              <s:complexType>
                <s:sequence>
                  <s:element ref="s:schema" />
                  <s:any />
                </s:sequence>
              </s:complexType>
            </s:element>
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="UpdateOrdersDataSetResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1" name="UpdateOrdersDataSetResult" type="s:boolean" />
          </s:sequence>
        </s:complexType>
      </s:element>
    </s:schema>
  </wsdl:types>
  <wsdl:message name="GetAllCustomersSoapIn">
    <wsdl:part name="parameters" element="tns:GetAllCustomers" />
  </wsdl:message>
  <wsdl:message name="GetAllCustomersSoapOut">
    <wsdl:part name="parameters" element="tns:GetAllCustomersResponse" />
  </wsdl:message>
  <wsdl:message name="GetOrdersByCustomerIDSoapIn">
    <wsdl:part name="parameters" element="tns:GetOrdersByCustomerID" />
  </wsdl:message>
  <wsdl:message name="GetOrdersByCustomerIDSoapOut">
    <wsdl:part name="parameters" element="tns:GetOrdersByCustomerIDResponse" />
  </wsdl:message>
  <wsdl:message name="UpdateCustomersDataSetSoapIn">
    <wsdl:part name="parameters" element="tns:UpdateCustomersDataSet" />
  </wsdl:message>
  <wsdl:message name="UpdateCustomersDataSetSoapOut">
    <wsdl:part name="parameters" element="tns:UpdateCustomersDataSetResponse" />
  </wsdl:message>
  <wsdl:message name="UpdateOrdersDataSetSoapIn">
    <wsdl:part name="parameters" element="tns:UpdateOrdersDataSet" />
  </wsdl:message>
  <wsdl:message name="UpdateOrdersDataSetSoapOut">
    <wsdl:part name="parameters" element="tns:UpdateOrdersDataSetResponse" />
  </wsdl:message>
  <wsdl:portType name="DataSetWSSoap">
    <wsdl:operation name="GetAllCustomers">
      <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">A simple Web method that returns an untyped Customers DataSet</wsdl:documentation>
      <wsdl:input message="tns:GetAllCustomersSoapIn" />
      <wsdl:output message="tns:GetAllCustomersSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="GetOrdersByCustomerID">
      <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">A parameterized Web method that returns an untyped Orders DataSet for a specified CustomerID in descending OrderDate sequence. Specify RATTC to return 18 orders.</wsdl:documentation>
      <wsdl:input message="tns:GetOrdersByCustomerIDSoapIn" />
      <wsdl:output message="tns:GetOrdersByCustomerIDSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="UpdateCustomersDataSet">
      <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">A parameterized Web method for updating the Customers DataSet. Accepts a DataSet of Customers table changes and returns True if updates succeed.</wsdl:documentation>
      <wsdl:input message="tns:UpdateCustomersDataSetSoapIn" />
      <wsdl:output message="tns:UpdateCustomersDataSetSoapOut" />
    </wsdl:operation>
    <wsdl:operation name="UpdateOrdersDataSet">
      <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">A parameterized Web method for updating the Orders DataSet. Accepts a DataSet of Orders table changes and returns True if updates succeed.</wsdl:documentation>
      <wsdl:input message="tns:UpdateOrdersDataSetSoapIn" />
      <wsdl:output message="tns:UpdateOrdersDataSetSoapOut" />
    </wsdl:operation>
  </wsdl:portType>
  <wsdl:binding name="DataSetWSSoap" type="tns:DataSetWSSoap">
    <wsdl:documentation>
      <wsi:Claim conformsTo="http://ws-i.org/profiles/basic/1.1" xmlns:wsi="http://ws-i.org/schemas/conformanceClaim/" />
    </wsdl:documentation>
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
    <wsdl:operation name="GetAllCustomers">
      <soap:operation soapAction="http://oakleaf.ws/webservices/datasetws/northwind/GetAllCustomers" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetOrdersByCustomerID">
      <soap:operation soapAction="http://oakleaf.ws/webservices/datasetws/northwind/GetOrdersByCustomerID" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="UpdateCustomersDataSet">
      <soap:operation soapAction="http://oakleaf.ws/webservices/datasetws/northwind/UpdateCustomersDataSet" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="UpdateOrdersDataSet">
      <soap:operation soapAction="http://oakleaf.ws/webservices/datasetws/northwind/UpdateOrdersDataSet" style="document" />
      <wsdl:input>
        <soap:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:binding name="DataSetWSSoap12" type="tns:DataSetWSSoap">
    <soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
    <wsdl:operation name="GetAllCustomers">
      <soap12:operation soapAction="http://oakleaf.ws/webservices/datasetws/northwind/GetAllCustomers" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="GetOrdersByCustomerID">
      <soap12:operation soapAction="http://oakleaf.ws/webservices/datasetws/northwind/GetOrdersByCustomerID" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="UpdateCustomersDataSet">
      <soap12:operation soapAction="http://oakleaf.ws/webservices/datasetws/northwind/UpdateCustomersDataSet" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
    <wsdl:operation name="UpdateOrdersDataSet">
      <soap12:operation soapAction="http://oakleaf.ws/webservices/datasetws/northwind/UpdateOrdersDataSet" style="document" />
      <wsdl:input>
        <soap12:body use="literal" />
      </wsdl:input>
      <wsdl:output>
        <soap12:body use="literal" />
      </wsdl:output>
    </wsdl:operation>
  </wsdl:binding>
  <wsdl:service name="DataSetWS">
    <wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Demonstration Web service with Web methods that return untyped DataSets. Errors throw SOAP faults.</wsdl:documentation>
    <wsdl:port name="DataSetWSSoap" binding="tns:DataSetWSSoap">
      <soap:address location="http://localhost/datasetws/datasetws.asmx" />
    </wsdl:port>
    <wsdl:port name="DataSetWSSoap12" binding="tns:DataSetWSSoap12">
      <soap12:address location="http://localhost/datasetws/datasetws.asmx" />
    </wsdl:port>
  </wsdl:service>
</wsdl:definitions>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?