可以启用我使用NuSOAP客户端启用WS-RM(版本1.2),如下所示吗?我尝试过这个,但我无法从API接收数据。有任何想法吗?感谢。
$client = new nusoap_client($api_link, array('reliable' => 1.2 , 'useWSA' => TRUE) );
完整代码:
try {
include_once 'WebServiceSOAP/lib/nusoap.php';
$api_link = 'https://www.my-api.com/MYAPI.svc/SSL?wsdl';
$acode = '###';
$uname = '###';
$ttype = '###';
$ccode = '###';
$hpass = '###';
//setting xml request to api
$credentials = '<soapenv:Envelope xmlns:soapenv="http://www.w3.org/2003/05/soap-envelope" xmlns:tem="http://tempuri.org/" xmlns:ezr="http://schemas.datacontract.org/2004/07/EzremitAPI.Entities">
<soapenv:Header/>
<soapenv:Body>
<tem:GetLocalRates>
<!--Optional:-->
<tem:credentials>
<!--Optional:-->
<ezr:AgentCode>'.$acode.'</ezr:AgentCode>
<!--Optional:-->
<ezr:HashedPassword>'.$hpass.'</ezr:HashedPassword>
<!--Optional:-->
<ezr:Username>'.$uname.'</ezr:Username>
</tem:credentials>
<!--Optional:-->
<tem:payincurcode>'.$ccode.'</tem:payincurcode>
<!--Optional:-->
<tem:transferType>'.$ttype.'</tem:transferType>
</tem:GetLocalRates>
</soapenv:Body>
</soapenv:Envelope>';
//creating soap object
$client = new nusoap_client($api_link, array('cache_wsdl' => WSDL_CACHE_NONE, 'soap_version' => SOAP_1_2) );
$client->soap_defencoding = 'UTF-8';
$soapaction = "http://tempuri.org/IRateAPI/GetLocalRates";
$xmlobjs = $client->send($credentials, $soapaction);
$err = $client->getError();
if ($err) {
echo '<h2>Constructor error</h2><pre>' . $err . '</pre>';
exit();
}
//print_r($client);
print_r($xmlobjs);
}
catch(Exception $e) {
echo $e->getMessage();
}
?>
我不擅长PHP和SOAP。上面的代码可能有错误。您能否查看代码并给我您的意见。我在搜索谷歌后做了一些修改。
另外,我可以在PHP 5.4.42上运行吗?当我运行上面的代码时,我现在得到以下错误。
构造函数错误 HTTP错误:不支持的HTTP响应状态415无法处理消息,因为内容类型为'text / xml; charset = UTF-8'不是预期的类型'application / soap + xml;字符集= UTF-8' 。 (soapclient-&gt;响应具有响应的内容)
答案 0 :(得分:0)
如果有人正在寻找上述问题的答案,我在@Marcel的帮助下找到了解决方案。
问题的答案:
此代码错误,请勿使用。
$client = new nusoap_client($api_link, array('reliable' => 1.2 , 'useWSA' => TRUE) );
NuSoap客户端已过时且不支持WS-RM。我不得不使用PHP内置的SOAP扩展来使我的项目工作。
完整答案在这里:SOAP Error in PHP: OperationFormatter encountered an invalid Message body
由于