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`;
相關文章
- php呼叫webservice的幾種方法PHPWeb
- C#中WebService的建立、部署和呼叫的簡單例項C#Web單例
- PHP呼叫MYSQL儲存過程例項PHPMySql儲存過程
- php做的WebService用axis呼叫不到PHPWeb
- VS 2005中使用C#建立及呼叫WebService完整例項C#Web
- PHP使用SOAP呼叫.net的WebService資料PHPWeb
- webservice介面呼叫Web
- Rest Webservice 環境搭建流程和例項RESTWeb
- 【原創】webservice xfire框架例項筆記Web框架筆記
- php例項化物件的例項方法PHP物件
- Ajax呼叫WebService(一)Web
- C#呼叫webserviceC#Web
- webservice中呼叫structWebStruct
- js 呼叫 WebService 方法JSWeb
- PHP呼叫webservice遇到 Soap WSDL Error - "failed to load external entityPHPWebErrorAI
- java動態呼叫webserviceJavaWeb
- 新增webservice呼叫日誌Web
- Axis2呼叫WebServiceWeb
- webapi建立和呼叫WebServiceWebAPI
- jQuery鏈式呼叫例項分析jQuery
- RFC 同步非同步呼叫例項非同步
- PHP漏洞挖掘思路+例項PHP
- PHP 完整表單例項PHP單例
- 騰訊WebService Api 跨域呼叫WebAPI跨域
- C#動態呼叫webserviceC#Web
- Android呼叫WebService詳解AndroidWeb
- 一種WebService的呼叫方式Web
- 網頁版微信介面呼叫例項網頁
- JAVA專案中釋出WebService服務—簡單例項JavaWeb單例
- CSRF的防禦例項(PHP)PHP
- PHP處理XML的例項PHPXML
- Webservice呼叫方式:axis,soap詳解Web
- CouchBase C 客戶端介面呼叫例項客戶端
- PHP生成日曆(例項詳解)PHP
- 在例項中呼叫 Invoke 型別的類型別
- python呼叫方法必須例項化麼Python
- jQuery鏈式呼叫簡單例項程式碼jQuery單例
- Python通過ctypes呼叫C程式例項PythonC程式