1
我对PHP的SOAP库相当陌生,并且在为我打的服务创建有效的SoapHeader时遇到问题。这里的服务WSDL:带有命名空间条目阵列的PHP SoapHeader
http://s7sps1api.scene7.com/scene7/webservice/IpsApi-2010-01-31.wsdl
这里是我的PHP脚本:
<?
try {
$options = array(
'exceptions'=>true,
'trace'=>1,
);
$ns = 'http://www.scene7.com/IpsApi/xsd';
$client = new SoapClient('http://s7sps1api.scene7.com/scene7/webservice/IpsApi-2010-01-31.wsdl', $options);
$auth = (object)array(
'user'=>'***',
'password'=>'***'
);
$header = new SoapHeader($ns, 'authHeader', $auth, false);
$client->__setSoapHeaders(array($header));
$client->getCompanyInfo(array('companyName' => '***'));
print "<pre>\n";
print "Request :\n".htmlspecialchars($client->__getLastRequest()) ."\n";
print "Response:\n".htmlspecialchars($client->__getLastResponse())."\n";
print "</pre>";
}
catch(SoapFault $ex)
{
print "<pre>\n";
print "Request :\n".htmlspecialchars($client->__getLastRequest()) ."\n";
print "</pre>";
var_dump($ex->faultcode, $ex->faultstring, $ex->faultactor, $ex->detail, $ex->_name, $ex->headerfault);
}
?>
当我运行它,我得到以下几点:
Request :
<?xml version="1.0" encoding="UTF-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://www.scene7.com/IpsApi/xsd/2010-01-31" xmlns:ns2="http://www.scene7.com/IpsApi/xsd"><SOAP-ENV:Header><ns2:authHeader><user>***</user><password>***</password></ns2:authHeader></SOAP-ENV:Header><SOAP-ENV:Body><ns1:getCompanyInfoParam><ns1:companyName>***</ns1:companyName></ns1:getCompanyInfoParam></SOAP-ENV:Body></SOAP-ENV:Envelope>
string(14) "soapenv:Server" string(11) "ipsApiFault" NULL object(stdClass)#12 (1) { ["ipsApiFault"]=> object(stdClass)#13 (2) { ["code"]=> string(5) "30002" ["reason"]=> string(81) "Missing 'user' element for header '{http://www.scene7.com/IpsApi/xsd}authHeader'." } } NULL NULL
这几乎是我需要它,但用户和密码节点没有像我认为他们应该那样的scene7名称空间。
如果我改变AUTH VAR这样:
$auth = (object)array(
'ns2:user' => '[email protected]',
'ns2:password' => 'lkjasdf1'
);
它的工作原理,但它似乎哈克,我是硬编码NS2。什么是正确的方法来做到这一点?
谢谢!