带有命名空间项数组的PHP SoapHeader


PHP SoapHeader with array of namespaced entries

我对PHP的SOAP库还很陌生,在为正在使用的服务创建有效的SoapHeader时遇到了问题。这是服务wsdl:

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' => 'aahardy@adobe.com',
    'ns2:password' => 'lkjasdf1'
    );

它有效,但我对ns2进行了硬编码,这似乎很奇怪。做这件事的正确方法是什么?

谢谢!

@Aaronius很好的例子!!

使用此WSDL:https://s7sps3apissl.scene7.com/scene7/webservice/IpsApi-2012-02-14.wsdl