bug77410.wsdl 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <definitions targetNamespace="urn:test"
  3. xmlns="http://schemas.xmlsoap.org/wsdl/"
  4. xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
  5. xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
  6. xmlns:test="urn:test"
  7. xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  8. <portType name="TestPortType">
  9. <operation name="MyMethod">
  10. <input message="test:MyMethodRequestMessage" />
  11. <output message="test:MyMethodResponseMessage" />
  12. </operation>
  13. </portType>
  14. <binding name="TestBinding" type="test:TestPortType">
  15. <operation name="MyMethod">
  16. <input><soap:body use="literal" /></input>
  17. <output><soap:body use="literal" /></output>
  18. </operation>
  19. </binding>
  20. <message name="MyMethodRequestMessage">
  21. <part name="parameters" element="test:MyMethodRequest" />
  22. </message>
  23. <message name="MyMethodResponseMessage">
  24. <part name="parameters" element="test:MyMethodResponse" />
  25. </message>
  26. <types>
  27. <schema targetNamespace="urn:test" xmlns="http://www.w3.org/2001/XMLSchema">
  28. <element name="MyMethodRequest">
  29. <complexType>
  30. <sequence>
  31. <element name="parameter" type="test:MyMethodRequestObject" />
  32. </sequence>
  33. </complexType>
  34. </element>
  35. <element name="MyMethodResponse" />
  36. <complexType name="MyMethodRequestObject">
  37. <complexContent>
  38. <extension base="test:DynamicData" />
  39. </complexContent>
  40. </complexType>
  41. <complexType name="DynamicData" />
  42. </schema>
  43. </types>
  44. <service name="TestService">
  45. <port binding="test:TestBinding" name="TestPort">
  46. <soap:address location="http://localhost:8080/test-service" />
  47. </port>
  48. </service>
  49. </definitions>