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

PHP使用SOAP调用.net的WebService数据

发布:smiling 来源: PHP粉丝网  添加日期:2020-06-18 09:44:26 浏览: 评论:0 

需要和一个.net系统进行数据交换,对方提供了一个WebService接口,使用PHP如何调用这个数据呢,下面就看看使用SOAP调用的方法吧。

这个与一般的PHP POST或GET传值再查库拿数据的思路有点不一样,需要用到SOAP模块,处理方法也很简单,就是有一些需要注意的事情。

首先确认你的PHP.ini开启了.SOAP,就是 extension=php_soap.dll 这前面的分号去咯。

代码很简单:

  1. <?php 
  2. $client = new SoapClient('http://www.aa.net/SearchService.asmx?WSDL');//这个SOAP地址要换成你自己的 
  3. $client->soap_defencoding = 'utf-8';   
  4. $client->decode_utf8 = false;    
  5. $client->xml_encoding = 'utf-8';  
  6. $param = array('param1'=>'01''param2'=>'02'); 
  7. //$param["param1"]="01"; 
  8. //$param["param2"]="02"; 
  9. //$result = $client->__soapCall("GetArticle", array( $param )); 
  10. $result = $client->__Call("GetArticle"array$param )); 
  11. if (is_soap_fault($result)) 
  12.     trigger_error("SOAP Fault: (faultcode: {$result->faultcode}, faultstring: {$result->faultstring})", E_USER_ERROR); 
  13. else 
  14.     $data = $result->GetArticleResult; //这里返回的是类,必须使用->得到元素的值 
  15.     print_r($data); 
  16. ?> 

需要注意的一点是,参数是数组外再包一层数组,就是 array( array() )

附SOAP接口的一些参数:

以下是 SOAP 1.2 请求和响应示例。所显示的占位符需替换为实际值,代码如下:

  1. POST /SearchService.asmx HTTP/1.1 
  2. Host: 202.105.183.61 
  3. Content-Type: text/xml; charset=utf-8 
  4. Content-Length: length 
  5. SOAPAction: "http://tempuri.org/GetTrafficViolationInfo" 
  6. <?xml version="1.0" encoding="utf-8"?> 
  7. <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
  8.   <soap:Body> 
  9.     <GetArticle xmlns="http://tempuri.org/"
  10.       <param1>string</param1> 
  11.       <param2>string</param2> 
  12.     </GetArticle> 
  13.   </soap:Body> 
  14. </soap:Envelope> 

Tags: SOAP WebService

分享到: