私は 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 = (object)array(
'ns2:user' => 'aahardy@adobe.com',
'ns2:password' => 'lkjasdf1'
);
それは動作しますが、私が ns2 をハードコーディングしているのはハックのようです。これを行う正しい方法は何ですか?
ありがとう!