Guest User

file.wsdl

a guest
Nov 14th, 2012
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. <?xml version='1.0' encoding='UTF-8' ?>
  2. <definitions name='tmp'
  3. xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/'
  4. xmlns:xsd='http://www.w3.org/2001/XMLSchema'
  5. xmlns:soapenc='http://schemas.xmlsoap.org/soap/encoding/'
  6. xmlns:wsdl='http://schemas.xmlsoap.org/wsdl/'
  7. xmlns='http://schemas.xmlsoap.org/wsdl/'>
  8.  
  9. <message name='infoRequest'>
  10. </message>
  11. <message name='infoResponse'>
  12. <part name='Result' type='xsd:string'/>
  13. </message>
  14.  
  15. <portType name='tmpPortType'>
  16. <operation name='info'>
  17. <input message='infoRequest'/>
  18. <output message='infoResponse'/>
  19. </operation>
  20. </portType>
  21.  
  22. <binding name='tmpBinding' type='tmpPortType'>
  23. <soap:binding style='rpc'
  24. transport='http://schemas.xmlsoap.org/soap/http'/>
  25. <operation name='info'>
  26. <soap:operation soapAction='xmethods-delayed-quotes#info'/>
  27. <input>
  28. <soap:body use='encoded' namespace='xmethods-delayed-quotes'
  29. encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/>
  30. </input>
  31. <output>
  32. <soap:body use='encoded' namespace='xmethods-delayed-quotes'
  33. encodingStyle='http://schemas.xmlsoap.org/soap/encoding/'/>
  34. </output>
  35. </operation>
  36. </binding>
  37.  
  38. <service name='tmpService'>
  39. <port name='tmpPort' binding='tmpBinding'>
  40. <soap:address location='http://SERVER/soapserver.php'/>
  41. </port>
  42. </service>
  43. </definitions>
Advertisement
Add Comment
Please, Sign In to add comment