关于webservice得不到值,小弟求帮助
function getline(){
$client = new SoapClient('http://www.ungb.com/sky/LineService.asmx?WSDL');
try {
$result = $client->GetListLine();
print_r($result);
return $result;
}catch(SoapFault $e){
return -1;
}
}
?>
我通过上面的代码得到的是空值,但我用soapui测试,接口是好的,可以得到值。
这东西弄的我郁闷死,求那位兄台帮忙解决一下,谢谢了。。。。。。。。。。。。。。。。
------解决方案--------------------
define('R_P',dirname(__FILE__)."/");
include_once(R_P.'class/nusoap/nusoap.php');
$wsdl="http://www.ungb.com/sky/LineService.asmx?WSDL";
$ParmArray=array("literal"=>"");
$client = new nusoap_client($wsdl,true);
$client->soap_defencoding = 'utf-8';
$client->decode_utf8 = false;
$client->xml_encoding = 'utf-8';
$client->timeout = 900;
$client->response_timeout = 900;
$result = $client->call("GetListLine",array("parameters"=>$ParmArray));
print_r($result); <div class="clear"></div>
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号