Home >Backend Development >PHP Tutorial >soap:Server: Fault occurred while processing.

soap:Server: Fault occurred while processing.

WBOY
WBOYOriginal
2016-06-23 14:24:074321browse

求助,用php与susoap操作java写的webservice总是出现soap:Server: Fault occurred while processing.


回复讨论(解决方案)

这个是代码部分
require_once("lib/nusoap.php");

$client = new SoapClient('http://sdata.et361.com/Service/shutDownPolicyService?wsdl','wsdl');
$userName='username';
$key='key';
$airway ='';
$orgcity ='';
$destcity ='';
$type="1";
$sign = md5($userName.$key.$airway.$orgcity.$destcity.$type);
$arr = array('userName'=>$userName,'key'=>$key,'airway'=>$airway,'destcity'=>$destcity,'orgcity'=>$orgcity,'type'=>$type,'sign'=>$sign,'param1'=>'','param2'=>'','param3'=>'','param4'=>'','param5'=>'');
try{
$shutDownPolicyRequest = $client->call("shutDownCachePolicy",$arr);
echo "
";
if(!$client->getError()){
var_dump($shutDownPolicyRequest);
}
else{
echo $client->getError();
}
}catch(SoapFault $e) { 
echo $e->getMessage ();
}

自己解决了,,,

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn