serverlibrary.wsdl

来自「用JavaScript编写的虚拟键盘」· WSDL 代码 · 共 71 行

WSDL
71
字号
<?xml version="1.0" encoding="utf-8"?>
<definitions xmlns:tns="http://tempuri.org/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ro="urn:ServerLibrary" name="ServerLibrary" targetNamespace="http://tempuri.org/" xmlns="http://schemas.xmlsoap.org/wsdl/">
  <types>
    <xs:schema xmlns="urn:ServerLibrary" elementFormDefault="qualified" targetNamespace="urn:ServerLibrary" />
  </types>
  <message name="ServerService___SumRequest">
    <part name="A" type="xs:int" />
    <part name="B" type="xs:int" />
  </message>
  <message name="ServerService___SumResponse">
    <part name="Result" type="xs:int" />
  </message>
  <message name="ServerService___GetServerTimeRequest" />
  <message name="ServerService___GetServerTimeResponse">
    <part name="Result" type="xs:dateTime" />
  </message>
  <message name="ServerService___HelloWorldRequest" />
  <message name="ServerService___HelloWorldResponse">
    <part name="Result" type="xs:string" />
  </message>
  <portType name="ServerService">
    <operation name="Sum">
      <input message="tns:ServerService___SumRequest" />
      <output message="tns:ServerService___SumResponse" />
    </operation>
    <operation name="GetServerTime">
      <input message="tns:ServerService___GetServerTimeRequest" />
      <output message="tns:ServerService___GetServerTimeResponse" />
    </operation>
    <operation name="HelloWorld">
      <input message="tns:ServerService___HelloWorldRequest" />
      <output message="tns:ServerService___HelloWorldResponse" />
    </operation>
  </portType>
  <binding name="ServerServiceBinding" type="tns:ServerService">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc" />
    <operation name="Sum">
      <soap:operation soapAction="urn:ServerLibrary-ServerService#Sum" style="rpc" />
      <input>
        <soap:body use="encoded" namespace="urn:ServerLibrary-ServerService" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </input>
      <output>
        <soap:body use="encoded" namespace="urn:ServerLibrary-ServerService" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </output>
    </operation>
    <operation name="GetServerTime">
      <soap:operation soapAction="urn:ServerLibrary-ServerService#GetServerTime" style="rpc" />
      <input>
        <soap:body use="encoded" namespace="urn:ServerLibrary-ServerService" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </input>
      <output>
        <soap:body use="encoded" namespace="urn:ServerLibrary-ServerService" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </output>
    </operation>
    <operation name="HelloWorld">
      <soap:operation soapAction="urn:ServerLibrary-ServerService#HelloWorld" style="rpc" />
      <input>
        <soap:body use="encoded" namespace="urn:ServerLibrary-ServerService" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </input>
      <output>
        <soap:body use="encoded" namespace="urn:ServerLibrary-ServerService" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </output>
    </operation>
  </binding>
  <service name="ServerServiceService">
    <documentation>Service ServerService. This service has been automatically generated using the RODL template you can find in the Templates directory.</documentation>
    <port name="ServerServicePort" binding="tns:ServerServiceBinding">
      <soap:address location="" />
    </port>
  </service>
</definitions>

⌨️ 快捷键说明

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