Advertisement
Guest User

Untitled

a guest
Mar 19th, 2014
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.55 KB | None | 0 0
  1. <definitions xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd" xmlns:wsp="http://www.w3.org/ns/ws-policy" xmlns:wsp1_2="http://schemas.xmlsoap.org/ws/2004/09/policy" xmlns:tns="http://server.soap.com/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:wsam="http://www.w3.org/2007/05/addressing/metadata" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://server.soap.com/" name="helloServiceService">
  2. <types>
  3. <xsd:schema version="1.0" targetNamespace="http://server.soap.com/"></xsd:schema>
  4. </types>
  5. <message name="hello">
  6. <part name="name" element="xsd:string"/>
  7. </message>
  8. <message name="helloResponse">
  9. <part name="return" element="xsd:string"/>
  10. </message>
  11. <portType name="helloService">
  12. <operation name="hello">
  13. <input wsam:Action="hello" message="tns:hello"/>
  14. <output wsam:Action="http://server.soap.com/helloService/helloResponse" message="tns:helloResponse"/>
  15. </operation>
  16. </portType>
  17. <binding name="helloServicePortBinding" type="tns:helloService">
  18. <soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="rpc"/>
  19. <operation name="hello">
  20. <soap:operation soapAction="hello"/>
  21. <input name="hello">
  22. <soap:body use="literal"/>
  23. </input>
  24. <output name="helloResponse">
  25. <soap:body use="literal"/>
  26. </output>
  27. </operation>
  28. </binding>
  29. <service name="helloServiceService">
  30. <port name="helloServicePort" binding="tns:helloServicePortBinding">
  31. <soap:address location="http://127.0.0.1:1337/helloService"/>
  32. </port>
  33. </service>
  34. </definitions>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement