⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 service1.wsdl

📁 Mastering VBNet Include Source Code
💻 WSDL
字号:
<?xml version="1.0" encoding="utf-8"?>
<definitions xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:s0="http://tempuri.org/" xmlns:s1="http://microsoft.com/wsdl/types/" targetNamespace="http://tempuri.org/" xmlns="http://schemas.xmlsoap.org/wsdl/">
  <types>
    <s:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://tempuri.org/">
      <s:import namespace="http://microsoft.com/wsdl/types/" />
      <s:element name="Loan">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1" name="Amount" type="s:decimal" />
            <s:element minOccurs="1" maxOccurs="1" name="Duration" type="s:int" />
            <s:element minOccurs="1" maxOccurs="1" name="Rate" type="s:decimal" />
            <s:element minOccurs="1" maxOccurs="1" name="PayEarly" type="s:boolean" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="LoanResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1" name="LoanResult" type="s:decimal" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="GetMyID">
        <s:complexType />
      </s:element>
      <s:element name="GetMyIDResponse">
        <s:complexType>
          <s:sequence>
            <s:element minOccurs="1" maxOccurs="1" name="GetMyIDResult" type="s1:guid" />
          </s:sequence>
        </s:complexType>
      </s:element>
      <s:element name="decimal" type="s:decimal" />
      <s:element name="guid" type="s1:guid" />
    </s:schema>
    <s:schema attributeFormDefault="qualified" elementFormDefault="qualified" targetNamespace="http://microsoft.com/wsdl/types/">
      <s:simpleType name="guid">
        <s:restriction base="s:string">
          <s:pattern value="[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}" />
        </s:restriction>
      </s:simpleType>
    </s:schema>
  </types>
  <message name="LoanSoapIn">
    <part name="parameters" element="s0:Loan" />
  </message>
  <message name="LoanSoapOut">
    <part name="parameters" element="s0:LoanResponse" />
  </message>
  <message name="GetMyIDSoapIn">
    <part name="parameters" element="s0:GetMyID" />
  </message>
  <message name="GetMyIDSoapOut">
    <part name="parameters" element="s0:GetMyIDResponse" />
  </message>
  <message name="LoanHttpGetIn">
    <part name="Amount" type="s:string" />
    <part name="Duration" type="s:string" />
    <part name="Rate" type="s:string" />
    <part name="PayEarly" type="s:string" />
  </message>
  <message name="LoanHttpGetOut">
    <part name="Body" element="s0:decimal" />
  </message>
  <message name="GetMyIDHttpGetIn" />
  <message name="GetMyIDHttpGetOut">
    <part name="Body" element="s0:guid" />
  </message>
  <message name="LoanHttpPostIn">
    <part name="Amount" type="s:string" />
    <part name="Duration" type="s:string" />
    <part name="Rate" type="s:string" />
    <part name="PayEarly" type="s:string" />
  </message>
  <message name="LoanHttpPostOut">
    <part name="Body" element="s0:decimal" />
  </message>
  <message name="GetMyIDHttpPostIn" />
  <message name="GetMyIDHttpPostOut">
    <part name="Body" element="s0:guid" />
  </message>
  <portType name="Service1Soap">
    <operation name="Loan">
      <input message="s0:LoanSoapIn" />
      <output message="s0:LoanSoapOut" />
    </operation>
    <operation name="GetMyID">
      <input message="s0:GetMyIDSoapIn" />
      <output message="s0:GetMyIDSoapOut" />
    </operation>
  </portType>
  <portType name="Service1HttpGet">
    <operation name="Loan">
      <input message="s0:LoanHttpGetIn" />
      <output message="s0:LoanHttpGetOut" />
    </operation>
    <operation name="GetMyID">
      <input message="s0:GetMyIDHttpGetIn" />
      <output message="s0:GetMyIDHttpGetOut" />
    </operation>
  </portType>
  <portType name="Service1HttpPost">
    <operation name="Loan">
      <input message="s0:LoanHttpPostIn" />
      <output message="s0:LoanHttpPostOut" />
    </operation>
    <operation name="GetMyID">
      <input message="s0:GetMyIDHttpPostIn" />
      <output message="s0:GetMyIDHttpPostOut" />
    </operation>
  </portType>
  <binding name="Service1Soap" type="s0:Service1Soap">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
    <operation name="Loan">
      <soap:operation soapAction="http://tempuri.org/Loan" style="document" />
      <input>
        <soap:body use="literal" />
      </input>
      <output>
        <soap:body use="literal" />
      </output>
    </operation>
    <operation name="GetMyID">
      <soap:operation soapAction="http://tempuri.org/GetMyID" style="document" />
      <input>
        <soap:body use="literal" />
      </input>
      <output>
        <soap:body use="literal" />
      </output>
    </operation>
  </binding>
  <binding name="Service1HttpGet" type="s0:Service1HttpGet">
    <http:binding verb="GET" />
    <operation name="Loan">
      <http:operation location="/Loan" />
      <input>
        <http:urlEncoded />
      </input>
      <output>
        <mime:mimeXml part="Body" />
      </output>
    </operation>
    <operation name="GetMyID">
      <http:operation location="/GetMyID" />
      <input>
        <http:urlEncoded />
      </input>
      <output>
        <mime:mimeXml part="Body" />
      </output>
    </operation>
  </binding>
  <binding name="Service1HttpPost" type="s0:Service1HttpPost">
    <http:binding verb="POST" />
    <operation name="Loan">
      <http:operation location="/Loan" />
      <input>
        <mime:content type="application/x-www-form-urlencoded" />
      </input>
      <output>
        <mime:mimeXml part="Body" />
      </output>
    </operation>
    <operation name="GetMyID">
      <http:operation location="/GetMyID" />
      <input>
        <mime:content type="application/x-www-form-urlencoded" />
      </input>
      <output>
        <mime:mimeXml part="Body" />
      </output>
    </operation>
  </binding>
  <service name="Service1">
    <port name="Service1Soap" binding="s0:Service1Soap">
      <soap:address location="http://localhost/WSLoan/Service1.asmx" />
    </port>
    <port name="Service1HttpGet" binding="s0:Service1HttpGet">
      <http:address location="http://localhost/WSLoan/Service1.asmx" />
    </port>
    <port name="Service1HttpPost" binding="s0:Service1HttpPost">
      <http:address location="http://localhost/WSLoan/Service1.asmx" />
    </port>
  </service>
</definitions>

⌨️ 快捷键说明

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