一区二区久久-一区二区三区www-一区二区三区久久-一区二区三区久久精品-麻豆国产一区二区在线观看-麻豆国产视频

淺談PHP調(diào)用Webservice思路及源碼分享

方法一:直接調(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)系我們修改或刪除,多謝。

主站蜘蛛池模板: 精品国产精品国产 | 国产第一区二区三区在线观看 | 色综合久久婷婷天天 | 深爱激动网婷婷狠狠五月 | 国产精品亚洲专一区二区三区 | 亚洲天堂日韩在线 | 在线观看视频www在线观看 | 精品久久久久久乐 | 国产系列 视频二区 | 伊人久久精品久久亚洲一区 | 色婷婷久久免费网站 | 国产精品色婷婷在线观看 | 久久精品视频播放 | 国产精品福利小视频 | 免费精品视频 | 在线色综合 | 国产福利小视频在线播放 | 丁香六月婷婷在线 | 成人午夜无人区一区二区 | 五月激情综合丁香色婷婷 | 黄色免费观看视频网站 | 91aaa免费观看在线观看资源 | 久久婷婷成人综合色 | 成人免费视频69 | 色草视频 | 亚洲一区免费观看 | 怡红院美国十次成人影院 | 色婷亚洲| 国内福利视频 | 五月天激情开心网 | 无码精品日韩中文字幕 | 涩涩网址 | 欧洲大胆a级人体 | 久久无码精品一区二区三区 | 一区二区视频在线免费观看 | 激情图片激情小说激情视频 | 日日噜噜噜夜夜爽爽狠狠视频 | 最新亚洲精品国自产在线 | jizz大全日本护士喷奶水 | 色老板在线观看永久免费视频 | 日本网络视频www色高清免费 |