1<?xml version="1.0" ?> 2<definitions 3 xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" 4 xmlns:xsd="http://www.w3.org/2001/XMLSchema" 5 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 6 xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" 7 xmlns:si="http://soapinterop.org/xsd" 8 xmlns:tns="http://linuxsrv.home/~dmitry/soap/test.wsdl" 9 xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" 10 xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" 11 xmlns="http://schemas.xmlsoap.org/wsdl/" 12 targetNamespace="http://linuxsrv.home/~dmitry/soap/test.wsdl"> 13 14 <message name="echoLongRequest"> 15 <part name="x" type="xsd:long" /> 16 </message> 17 18 <message name="echoLongResponse"> 19 <part name="x" type="xsd:long" /> 20 </message> 21 22 <portType name="TestServicePortType"> 23 <operation name="echoLong"> 24 <input message="tns:echoLongRequest" /> 25 <output message="tns:echoLongResponse" /> 26 </operation> 27 </portType> 28 29 <binding name="TestServiceBinding" type="tns:TestServicePortType"> 30 <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" /> 31 <operation name="echoLong"> 32 <soap:operation style="rpc" /> 33 <input> 34 <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" /> 35 </input> 36 <output> 37 <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" /> 38 </output> 39 </operation> 40 </binding> 41 42 <service name="TestService"> 43 <port name="TestServicePort" binding="tns:TestServiceBinding"> 44 <soap:address location="test://" /> 45 </port> 46 </service> 47 48</definitions> 49