初めての SOAP 接続をセットアップします。以下のコード。AvailableContent メソッドをプルダウンできますが、他のオブジェクトにアクセスできないようです。私のコードにすぐに何か問題がありますか、それともサービスプロバイダーに尋ねることができる何かがありますか?
$soapClient = new SoapClient('http://contentcafe2.btol.com/contentcafe/contentcafe.asmx?wsdl', array("trace" => 1, "exception" => 0));
$auth = array(
'userID' => 'XXXXXXX',
'password' => 'XXXXXXX',
'key' => '9781608198214',
'content' => 'AvailableContent'
);
try{
$response = $soapClient->Single($auth);
echo "<pre>";
print_r($response);
echo "</pre>";
}catch (Exception $e) {
}