imysampletestservice.wsdl

来自「实现PocketPC通信的Delphi程序」· WSDL 代码 · 共 51 行

WSDL
51
字号
<?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:soapenc="http://schemas.xmlsoap.org/soap/encoding/" name="IMySampleTestservice" targetNamespace="http://tempuri.org/" xmlns="http://schemas.xmlsoap.org/wsdl/">
  <types />
  <message name="TheAnswerRequest">
    <part name="WMMs" type="xs:string" />
  </message>
  <message name="TheAnswerResponse">
    <part name="WMMs" type="xs:string" />
    <part name="return" type="xs:int" />
  </message>
  <message name="TheQuestionRequest" />
  <message name="TheQuestionResponse">
    <part name="return" type="xs:string" />
  </message>
  <portType name="IMySampleTest">
    <operation name="TheAnswer">
      <input message="tns:TheAnswerRequest" />
      <output message="tns:TheAnswerResponse" />
    </operation>
    <operation name="TheQuestion">
      <input message="tns:TheQuestionRequest" />
      <output message="tns:TheQuestionResponse" />
    </operation>
  </portType>
  <binding name="IMySampleTestbinding" type="tns:IMySampleTest">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc" />
    <operation name="TheAnswer">
      <soap:operation soapAction="urn:MySampleTestIntf-IMySampleTest#TheAnswer" style="rpc" />
      <input>
        <soap:body use="encoded" namespace="urn:MySampleTestIntf-IMySampleTest" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </input>
      <output>
        <soap:body use="encoded" namespace="urn:MySampleTestIntf-IMySampleTest" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </output>
    </operation>
    <operation name="TheQuestion">
      <soap:operation soapAction="urn:MySampleTestIntf-IMySampleTest#TheQuestion" style="rpc" />
      <input>
        <soap:body use="encoded" namespace="urn:MySampleTestIntf-IMySampleTest" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </input>
      <output>
        <soap:body use="encoded" namespace="urn:MySampleTestIntf-IMySampleTest" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" />
      </output>
    </operation>
  </binding>
  <service name="IMySampleTestservice">
    <port name="IMySampleTestPort" binding="tns:IMySampleTestbinding">
      <soap:address location="http://localhost/SampleTest.exe/soap/IMySampleTest" />
    </port>
  </service>
</definitions>

⌨️ 快捷键说明

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