ifirstws.wsdl.xml

来自「Delphi开发webservice的一套例子」· XML 代码 · 共 31 行

XML
31
字号
<?xml version="1.0"?>
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:xs="http://www.w3.org/2001/XMLSchema" name="IFirstWSservice" targetNamespace="http://www.borland.com/soapServices/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
  <message name="GetWSMsgRequest"/>
  <message name="GetWSMsgResponse">
    <part name="return" type="xs:string"/>
  </message>
  <portType name="IFirstWS">
    <operation name="GetWSMsg">
      <input message="GetWSMsgRequest"/>
      <output message="GetWSMsgResponse"/>
    </operation>
  </portType>
  <binding name="IFirstWSbinding" type="IFirstWS">
    <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="GetWSMsg">
      <soap:operation soapAction="urn:FirstWSIntf-IFirstWS#GetWSMsg"/>
      <input>
        <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:FirstWSIntf-IFirstWS"/>
      </input>
      <output>
        <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="urn:FirstWSIntf-IFirstWS"/>
      </output>
    </operation>
  </binding>
  <service name="IFirstWSservice">
    <port name="IFirstWSPort" binding="IFirstWSbinding">
      <soap:address location="http://localhost:1024/PWSDemo1.exe/soap/IFirstWS"/>
    </port>
  </service>
</definitions>

⌨️ 快捷键说明

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