esoapserver.wsdl
来自「ESOAP一款专注于嵌入式的WEB SERVICE开发的软件。」· WSDL 代码 · 共 42 行
WSDL
42 行
<?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 + =
减小字号Ctrl + -
显示快捷键?