当前位置:首页 > PHP教程 > php高级应用 > 列表

PHP使用NuSOAP调用Web服务的方法

发布:smiling 来源: PHP粉丝网  添加日期:2021-06-13 13:49:41 浏览: 评论:0 

这篇文章主要介绍了PHP使用NuSOAP调用Web服务的方法,涉及php实现web服务的相关技巧,具有一定参考借鉴价值,需要的朋友可以参考下

本文实例讲述了PHP使用NuSOAP调用Web服务的方法。分享给大家供大家参考。具体如下:

Steps:

1. Download nusoap library from internet.

2. Pass parameter list in your $client->call and enjoy.

  1. <?php 
  2. require_once('./lib/nusoap.php'); 
  3. $client = new soapclientnusoap('http://www.devtrackn.com/webservice/server.php'); 
  4. $err = $client->getError(); 
  5. if ($err) { 
  6.   // Display the error 
  7.   echo '<p><b>Constructor error: ' . $err . '</b></p>'
  8.   // At this point, you know the call that follows will fail 
  9. //////////////////////////////////////////////////////// 
  10. //////////////////////////////////////////////////////// 
  11. // update_location method parameter 
  12. $param = array
  13.     'device_number'   => '9910948357'
  14.     'latitude'     => '40.727757'
  15.     'longitude'     => '-73.984366'
  16.     'battery_status'  => '30' 
  17.   ); 
  18. // user_action method parameter 
  19. $param2 = array
  20.     'device_number'   => '27ab2026da5213ebd6c95e5fbe50965bdfaddf4b'
  21.     'latitude'     => '40.727757'
  22.     'longitude'     => '-73.984366'
  23.     'user_action'    => 'Meeting_Test' 
  24.   ); 
  25. // sos method parameter 
  26. $param3 = array
  27.     'device_number'   => '9910948357'
  28.     'latitude'     => '40.727757'
  29.     'longitude'     => '-73.984366'
  30.   ); 
  31. //$result = $client->call('update_location', $param); 
  32. //$result = $client->call('user_action', $param2); 
  33. //$result = $client->call('sos', $param3); 
  34. $result = $client->call('user_entity_status'array('device_number' => '27ab2026da5213ebd6c95e5fbe50965bdfaddf4b')); 
  35. //////////////////////////////////////////////////////// 
  36. //////////////////////////////////////////////////////// 
  37. // Check for a fault 
  38. if ($client->fault) { 
  39.   echo '<p><b>Fault: '
  40.   print_r($result); 
  41.   echo '</b></p>'
  42. else { 
  43.   // Check for errors 
  44.   $err = $client->getError(); 
  45.   if ($err) { 
  46.     // Display the error 
  47.     echo '<p><b>Error: ' . $err . '</b></p>'
  48.   } else { 
  49.     // Display the result 
  50.     echo "<pre>"
  51.     print_r($result); 
  52.     echo "</pre>"
  53.   } 
  54. echo '<h2>Request</h2>'
  55. echo '<pre>' . htmlspecialchars($client->request, ENT_QUOTES) . '</pre>'
  56. echo '<h2>Response</h2>'
  57. echo '<pre>' . htmlspecialchars($client->response, ENT_QUOTES) . '</pre>'
  58. /* 
  59. // Display the debug messages 
  60. echo '<h2>Debug</h2>'; 
  61. echo '<pre>' . htmlspecialchars($client->debug_str, ENT_QUOTES) . '</pre>'; 
  62. */ 
  63. ?> 

希望本文所述对大家的php程序设计有所帮助。

Tags: NuSOAP Web

分享到: