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="AddRequest"/> 22 <message name="AddResponse"/> 23 24 <portType name="TestServicePortType"> 25 <operation name="Add"> 26 <input message="tns:AddRequest" /> 27 </operation> 28 </portType> 29 30 <binding name="TestServiceBinding" type="tns:TestServicePortType"> 31 <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http" /> 32 <operation name="Add"> 33 <soap:operation soapAction="Add" style="rpc" /> 34 <input> 35 <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" /> 36 </input> 37 </operation> 38 </binding> 39 40 <service name="TestService"> 41 <port name="TestServicePort" binding="tns:TestServiceBinding"> 42 <soap:address location="http://linuxsrv.home/~dmitry/soap/soap_server.php" /> 43 </port> 44 </service> 45 46</definitions> 47