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