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