|
方法一:直接調(diào)用
復(fù)制代碼 代碼如下:
<?
/******************************************************************************/
/* 文件名 : soapclient.php
/* 說(shuō) 明 : WebService接口客戶端例程
/******************************************************************************/
include('NuSoap.php');
// 創(chuàng)建一個(gè)soapclient對(duì)象,參數(shù)是server的WSDL
$client = new soapclient('http://localhost/Webservices/Service.asmx?WSDL', 'wsdl');
// 參數(shù)轉(zhuǎn)為數(shù)組形式傳遞
$aryPara = array('strUsername'=>'username', 'strPassword'=>MD5('password'));
// 調(diào)用遠(yuǎn)程函數(shù)
$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;
?>
復(fù)制代碼 代碼如下:
<?
/******************************************************************************/
/* 文件名 : soapclient.php
/* 說(shuō) 明 : WebService接口客戶端例程
/******************************************************************************/
include('NuSoap.php');
// 創(chuàng)建一個(gè)soapclient對(duì)象,參數(shù)是server的WSDL
$client = new soapclient('http://localhost/Webservices/Service.asmx?WSDL', 'wsdl');
// 參數(shù)轉(zhuǎn)為數(shù)組形式傳遞
$aryPara = array('strUsername'=>'username', 'strPassword'=>MD5('password'));
// 調(diào)用遠(yuǎn)程函數(shù)
$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;
?>
方法二:代理方式調(diào)用
復(fù)制代碼 代碼如下:
<?
/******************************************************************************/
/* 文件名 : soapclient.php
/* 說(shuō) 明 : WebService接口客戶端例程
/******************************************************************************/
require('NuSoap.php');
//創(chuàng)建一個(gè)soapclient對(duì)象,參數(shù)是server的WSDL
$client=new soapclient('http://localhost/Webservices/Service.asmx?WSDL', 'wsdl');
//生成proxy類
$proxy=$client->getProxy();
//調(diào)用遠(yuǎn)程函數(shù)
$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;
?>
復(fù)制代碼 代碼如下:
<?
/******************************************************************************/
/* 文件名 : soapclient.php
/* 說(shuō) 明 : WebService接口客戶端例程
/******************************************************************************/
require('NuSoap.php');
//創(chuàng)建一個(gè)soapclient對(duì)象,參數(shù)是server的WSDL
$client=new soapclient('http://localhost/Webservices/Service.asmx?WSDL', 'wsdl');
//生成proxy類
$proxy=$client->getProxy();
//調(diào)用遠(yuǎn)程函數(shù)
$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 調(diào)用.NET WebService或J2EE WebService的朋友可能都遇到過(guò)中文亂碼問(wèn)題,下面介紹這一問(wèn)題的出現(xiàn)的原因和相應(yīng)的解決方法。
NuSoap調(diào)用WebService出現(xiàn)亂碼的原因:
通常我們進(jìn)行WebService開(kāi)發(fā)時(shí)都是用的UTF-8編碼,這時(shí)我們需要設(shè)置:
復(fù)制代碼 代碼如下:
$client->soap_defencoding = 'utf-8';
$client->soap_defencoding = 'utf-8';
同時(shí),需要讓xml以同樣的編碼方式傳遞:
復(fù)制代碼 代碼如下:
$client->xml_encoding = 'utf-8';
$client->xml_encoding = 'utf-8';
至此應(yīng)該是一切正常了才對(duì),但是我們?cè)谳敵鼋Y(jié)果的時(shí)候,卻發(fā)現(xiàn)返回的是亂碼。
NuSoap調(diào)用WebService出現(xiàn)亂碼的解決方法:
實(shí)際上,開(kāi)啟了調(diào)試功能的朋友,相信會(huì)發(fā)現(xiàn)$client->response返回的是正確的結(jié)果,為什么$result = $client->call($action, array('parameters' => $param)); 卻是亂碼呢?
研究過(guò)NuSoap代碼后我們會(huì)發(fā)現(xiàn),當(dāng)xml_encoding設(shè)置為UTF-8時(shí),NuSoap會(huì)檢測(cè)decode_utf8的設(shè)置,如果為true,會(huì)執(zhí)行 php 里面的utf8_decode函數(shù),而NuSoap默認(rèn)為true,因此,我們需要設(shè)置:
復(fù)制代碼 代碼如下:
$client->soap_defencoding = 'utf-8';
$client->decode_utf8 = false;
$client->xml_encoding = 'utf-8';
$client->soap_defencoding = 'utf-8';
$client->decode_utf8 = false;
$client->xml_encoding = 'utf-8';
php技術(shù):淺談PHP調(diào)用Webservice思路及源碼分享,轉(zhuǎn)載需保留來(lái)源!
鄭重聲明:本文版權(quán)歸原作者所有,轉(zhuǎn)載文章僅為傳播更多信息之目的,如作者信息標(biāo)記有誤,請(qǐng)第一時(shí)間聯(lián)系我們修改或刪除,多謝。