PHP呼叫Webservice例項

傑克.陳發表於2014-12-10

原文 PHP呼叫Webservice例項

NuSoap是PHP環境下的WebService程式設計工具,用於建立或呼叫WebService。它是一個開源軟體,是完全採用PHP語言編寫的、通過HTTP收發SOAP訊息的一系列PHP類,由NuSphere Corporation(http://dietrich.ganx4.com/nusoap/ )開發。NuSOAP的一個優勢是不需要擴充套件庫的支援,這種特性使得NuSoap可以用於所有的PHP環境,不受伺服器安全設定的影響。  

方法一:直接呼叫

<?
/******************************************************************************/
/*  檔名 : soapclient.php
/*  說  明 : WebService介面客戶端例程
/******************************************************************************/
include(`NuSoap.php`);

// 建立一個soapclient物件,引數是server的WSDL 
$client = new soapclient(`http://localhost/Webservices/Service.asmx?WSDL`, `wsdl`);

// 引數轉為陣列形式傳遞
$aryPara = array(`strUsername`=>`username`, `strPassword`=>MD5(`password`));

// 呼叫遠端函式
$aryResult = $client->call(`login`,$aryPara);

//echo $client->debug_str;
/*
if (!$err=$client->getError()) {
  print_r($aryResult); 
} else { 
  print “ERROR: $err”; 
}
*/

$document=$client->document;
echo <<<SoapDocument
<?xml version=”1.0″ encoding=”GB2312″?>
 <SOAP-ENV:Envelope SOAP-ENV:encodingStyle=”http://schemas.xmlsoap.org/soap/encoding/” xmlns:SOAP-ENV=”http://schemas.xmlsoap.org/soap/envelope/” xmlns:xsd=”http://www.w3.org/2001/XMLSchema” xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xmlns:SOAP-ENC=”http://schemas.xmlsoap.org/soap/encoding/” xmlns:si=”http://soapinterop.org/xsd“>
   <SOAP-ENV:Body>
   $document
   </SOAP-ENV:Body>
 </SOAP-ENV:Envelope>
SoapDocument;

?>


方法二:代理方式呼叫

<?
/******************************************************************************/
/*  檔名 : soapclient.php
/*  說  明 : WebService介面客戶端例程
/******************************************************************************/
require(`NuSoap.php`);

//建立一個soapclient物件,引數是server的WSDL 
$client=new soapclient(`http://localhost/Webservices/Service.asmx?WSDL`, `wsdl`);

//生成proxy類 
$proxy=$client->getProxy();

//呼叫遠端函式 
$aryResult=$proxy->login(`username`,MD5(`password`));

//echo $client->debug_str;
/*
if (!$err=$proxy->getError()) {
  print_r($aryResult); 
} else { 
  print “ERROR: $err”; 
}
*/

$document=$proxy->document;
echo <<<SoapDocument
<?xml version=”1.0″ encoding=”GB2312″?>
 <SOAP-ENV:Envelope SOAP-ENV:encodingStyle=”http://schemas.xmlsoap.org/soap/encoding/” xmlns:SOAP-ENV=”http://schemas.xmlsoap.org/soap/envelope/” xmlns:xsd=”http://www.w3.org/2001/XMLSchema” xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xmlns:SOAP-ENC=”http://schemas.xmlsoap.org/soap/encoding/” xmlns:si=”http://soapinterop.org/xsd“>
   <SOAP-ENV:Body>
   $document
   </SOAP-ENV:Body>
 </SOAP-ENV:Envelope>
SoapDocument;

?>

  許多使用NuSoap 呼叫.NET WebService或J2EE  WebService的朋友可能都遇到過中文亂碼問題,下面介紹這一問題的出現的原因和相應的解決方法。

  NuSoap呼叫WebService出現亂碼的原因:

  通常我們進行WebService開發時都是用的UTF-8編碼,這時我們需要設定:

$client->soap_defencoding = `utf-8`;

  同時,需要讓xml以同樣的編碼方式傳遞:

$client->xml_encoding = `utf-8`;

   至此應該是一切正常了才對,但是我們在輸出結果的時候,卻發現返回的是亂碼。

  NuSoap呼叫WebService出現亂碼的解決方法:

  實際上,開啟了除錯功能的朋友,相信會發現$client->response返回的是正確的結果,為什麼$result = $client->call($action, array(`parameters` => $param)); 卻是亂碼呢?

  研究過NuSoap程式碼後我們會發現,當xml_encoding設定為UTF-8時,NuSoap會檢測decode_utf8的設定,如果為true,會執行 PHP 裡面的utf8_decode函式,而NuSoap預設為true,因此,我們需要設定:

$client->soap_defencoding = `utf-8`;
$client->decode_utf8 = false;
$client->xml_encoding = `utf-8`;


相關文章