bug32776.wsdl 1.6 KB

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