Advertisement
Guest User

Untitled

a guest
Jul 31st, 2014
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.70 KB | None | 0 0
  1. [ 10:32:55 srobbins@IMAC27-004:~/public_html/lab ]$ php soap-test.php
  2. 0 s Connecting to https://preview.smarthome.com/index.php/api/index/index/?wsdl=1... (Soap API Version 1)
  3. 0.655 s Connected.
  4. 1.389 s Logged in as user 'srobbins'
  5. 1.389 s Calling store.list()...
  6. 2.018 s Call was completed successfully.
  7. array(1) {
  8. [0]=>
  9. array(7) {
  10. ["store_id"]=>
  11. string(1) "1"
  12. ["code"]=>
  13. string(7) "default"
  14. ["website_id"]=>
  15. string(1) "1"
  16. ["group_id"]=>
  17. string(1) "1"
  18. ["name"]=>
  19. string(18) "Default Store View"
  20. ["sort_order"]=>
  21. string(1) "0"
  22. ["is_active"]=>
  23. string(1) "1"
  24. }
  25. }
  26. [ 10:32:58 srobbins@IMAC27-004:~/public_html/lab ]$ php soap-test.php
  27. 0 s Connecting to https://preview.smarthome.com/index.php/api/v2_soap/index/?wsdl=1... (Soap API Version 2)
  28. 1.862 s Connected.
  29. 2.892 s Logged in as user 'srobbins'
  30. 2.892 s Calling storeList()...
  31. 3.884 s Call was completed successfully.
  32. array(1) {
  33. [0]=>
  34. object(stdClass)#3 (7) {
  35. ["store_id"]=>
  36. int(1)
  37. ["code"]=>
  38. string(7) "default"
  39. ["website_id"]=>
  40. int(1)
  41. ["group_id"]=>
  42. int(1)
  43. ["name"]=>
  44. string(18) "Default Store View"
  45. ["sort_order"]=>
  46. int(0)
  47. ["is_active"]=>
  48. int(1)
  49. }
  50. }
  51. [ 10:35:23 srobbins@IMAC27-004:~/public_html/smarthome ]$ php xmlrpc-test.php
  52. array(1) {
  53. [0]=>
  54. array(7) {
  55. ["store_id"]=>
  56. string(1) "1"
  57. ["code"]=>
  58. string(7) "default"
  59. ["website_id"]=>
  60. string(1) "1"
  61. ["group_id"]=>
  62. string(1) "1"
  63. ["name"]=>
  64. string(18) "Default Store View"
  65. ["sort_order"]=>
  66. string(1) "0"
  67. ["is_active"]=>
  68. string(1) "1"
  69. }
  70. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement