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="TestRequest"> 15 <part name="x" type="xsd:string" /> 16 </message> 17 <message name="TestResponse"> 18 <part name="result" type="xsd:string" /> 19 </message> 20 21 <portType name="TestServicePortType"> 22 <operation name="Test"> 23 <input message="tns:TestRequest" /> 24 <output message="tns:TestResponse" /> 25 </operation> 26 </portType> 27 28 <binding name="TestServiceBinding" type="tns:TestServicePortType"> 29 <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" /> 30 <operation name="Test"> 31 <soap:operation soapAction="Test" style="rpc" /> 32 <input> 33 <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" /> 34 </input> 35 <output> 36 <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" /> 37 </output> 38 </operation> 39 </binding> 40 41 <service name="TestService"> 42 <port name="TestServicePort" binding="tns:TestServiceBinding"> 43 <soap:address location="test://0" /> 44 </port> 45 </service> 46 47</definitions> 48