bug38067.wsdl 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <definitions
  3. xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
  4. xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
  5. xmlns:s="http://www.w3.org/2001/XMLSchema"
  6. xmlns:s0="http://test.pl"
  7. targetNamespace="http://test.pl"
  8. xmlns="http://schemas.xmlsoap.org/wsdl/">
  9. <types>
  10. <s:schema elementFormDefault="qualified" targetNamespace="http://test.pl">
  11. <s:complexType name="Test">
  12. <s:attribute use="required" name="str" type="s:string"/>
  13. </s:complexType>
  14. <s:element type="s0:Test" name="Test"/>
  15. <s:element type="s:string" name="Ret"/>
  16. </s:schema>
  17. </types>
  18. <message name="TestSoapIn">
  19. <part name="parameters" element="s0:Test"/>
  20. </message>
  21. <message name="TestSoapOut">
  22. <part name="parameters" element="s0:Ret"/>
  23. </message>
  24. <portType name="TestSoap">
  25. <operation name="Test">
  26. <input message="s0:TestSoapIn"/>
  27. <output message="s0:TestSoapOut"/>
  28. </operation>
  29. </portType>
  30. <binding name="TestSoap" type="s0:TestSoap">
  31. <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document"/>
  32. <operation name="Test">
  33. <soap:operation soapAction="http:/Test/Test" style="document"/>
  34. <input>
  35. <soap:body use="literal"/>
  36. </input>
  37. <output>
  38. <soap:body use="literal"/>
  39. </output>
  40. </operation>
  41. </binding>
  42. <service name="Test">
  43. <port name="TestSoapPort" binding="s0:TestSoap">
  44. <soap:address location="http://localhost/server.php"/>
  45. </port>
  46. </service>
  47. </definitions>