Advertisement
Guest User

Output of consume.php using the SLIM_Service.php script.

a guest
Apr 5th, 2011
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.21 KB | None | 0 0
  1. Request Headers
  2. ---------------
  3. POST /Business.PartnerService/svc/SLIM.svc HTTP/1.1
  4. Host: betaservices.membersolutions.com
  5. Connection: Keep-Alive
  6. User-Agent: PHP
  7. Content-Type: text/xml; charset=utf-8
  8. SOAPAction: "http://betaservices.membersolutions.com/ISLIMService/HelloWorld"
  9. Content-Length: 239
  10.  
  11.  
  12. Request (XML)
  13. -------------
  14. <?xml version="1.0" encoding="utf-8"?>
  15. <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
  16. xmlns:ns1="http://betaservices.membersolutions.com/">
  17. <SOAP-ENV:Body>
  18. <ns1:HelloWorld />
  19. </SOAP-ENV:Body>
  20. </SOAP-ENV:Envelope>
  21.  
  22. Response Headers
  23. ----------------
  24. HTTP/1.1 200 OK
  25. Date: Tue, 05 Apr 2011 10:47:27 GMT
  26. Server: Microsoft-IIS/6.0
  27. X-Powered-By: ASP.NET
  28. X-AspNet-Version: 4.0.30319
  29. Content-Length: 234
  30. Cache-Control: private
  31. Content-Type: text/xml; charset=utf-8
  32.  
  33. Response (XML)
  34. --------------
  35. <s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
  36. <s:Body>
  37. <HelloWorldResponse xmlns="http://betaservices.membersolutions.com/">
  38. <HelloWorldResult>Hello, World!</HelloWorldResult>
  39. </HelloWorldResponse>
  40. </s:Body>
  41. </s:Envelope>
  42.  
  43.  
  44. Response (Interpreted)
  45. ----------------------
  46. Hello, World!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement