1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
<?xml version="1.0" encoding="utf-8"?>
<definitions name="echo"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:tns="urn:rpc"
xmlns:txd="urn:rpc-type"
targetNamespace="urn:rpc"
xmlns="http://schemas.xmlsoap.org/wsdl/">
<types>
<xsd:schema targetNamespace="urn:rpc-type">
<xsd:complexType name="person">
<xsd:all>
<xsd:element name="family-name" type="xsd:string" />
<xsd:element name="given_name" type="xsd:string" />
<xsd:element name="age" type="xsd:int" />
<xsd:element name="link" type="txd:person" />
</xsd:all>
</xsd:complexType>
</xsd:schema>
</types>
<message name="echo_in">
<part name="arg1" type="txd:person"/>
<part name="arg2" type="txd:person"/>
</message>
<message name="echo_out">
<part name="return" type="txd:person"/>
</message>
<portType name="echo_port_type">
<operation name="echo">
<input message="tns:echo_in"/>
<output message="tns:echo_out"/>
</operation>
<operation name="echo_err">
<input message="tns:echo_in"/>
<output message="tns:echo_out"/>
</operation>
</portType>
<binding name="echo_binding" type="tns:echo_port_type">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc"/>
<operation name="echo">
<soap:operation soapAction=""/>
<input>
<soap:body use="encoded" namespace="urn:rpc"
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</input>
<output>
<soap:body use="encoded" namespace="urn:rpc"
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</output>
</operation>
<operation name="echo_err">
<soap:operation soapAction=""/>
<input>
<soap:body use="encoded" namespace="urn:rpc"
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</input>
<output>
<soap:body use="encoded" namespace="urn:rpc"
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
</output>
</operation>
</binding>
<service name="echo_service">
<port name="echo_port" binding="tns:echo_binding">
<soap:address location="http://localhost:10080"/>
</port>
</service>
</definitions>
|