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

📄 esoapserver.wsdl

📁 ESOAP一款专注于嵌入式的WEB SERVICE开发的软件。
💻 WSDL
字号:
<?xml version = "1.0"?>
<definitions name = "ESoapServerService" 
             targetNamespace="http://tempuri.org/wsdl/" 
             xmlns:wsdlns = "http://tempuri.org/wsdl/" 
             xmlns:xsd  = "http://www.w3.org/2001/XMLSchema" 
             xmlns:soap = "http://schemas.xmlsoap.org/wsdl/soap/" 
             xmlns      = "http://schemas.xmlsoap.org/wsdl/">
   <message name = "AddRequest">
           <part name = "a" type = "xsd:int"/>
           <part name = "b" type = "xsd:int"/>
   </message>
   <message name = "AddResponse">
           <part name = "sum" type = "xsd:int"/>
   </message>
   <portType name = "ESoapServerPort">
           <operation name = "add">
                    <input  message = "wsdlns:AddRequest"  name = "addRequest"/>
                    <output message = "wsdlns:AddResponse" name = "addResponse"/>
           </operation>
    </portType>
    <binding name = "ESoapServerBinding" type = "wsdlns:ESoapServerPort">
           <soap:binding style = "rpc" transport = "http://schemas.xmlsoap.org/soap/http"/>
           <operation name = "add">
               <soap:operation soapAction=""/>
               <input>
                    <soap:body use = "encoded" namespace = "urn:eSoap-Sample" 
                            encodingStyle = "http://schemas.xmlsoap.org/soap/encoding/"/>
               </input>
               <output>
                     <soap:body use = "encoded" namespace = "urn:eSoap-Sample" 
                                encodingStyle = "http://schemas.xmlsoap.org/soap/encoding/"/>
               </output>
           </operation>
     </binding>
     <service name = "ESoapServerService">
              <documentation>Accepts two numbers and return the sum of them</documentation>
             <port name = "ESoapServerPort" binding = "wsdlns:ESoapServerBinding">
                   <soap:address location = "http://localhost:8080/rpcrouter"/>
             </port>
     </service>
</definitions>

⌨️ 快捷键说明

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