NuSOAP で SOAP 呼び出しを行うと、SOAP エラーが発生します。
{http://www.w3.org/2001/XMLSchema}anyType のデシリアライザーはありません
リクエストは次のようになります。
<SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:impl="http://rtw.dncrtelem" xmlns:arr="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<SOAP-ENV:Body>
<impl:WashNumbers xmlns:impl="http://rtw.dncrtelem">
<TelemarketerId xsi:type="xsd:string">****</TelemarketerId>
<WashOnlyUserId xsi:type="xsd:string">****</WashOnlyUserId>
<TelemarketerPassword xsi:type="xsd:string">****</TelemarketerPassword>
<ClientReferenceId xsi:type="xsd:string">****</ClientReferenceId>
<NumbersToWash xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="xsd:anyType[2]">
<item xsi:type="xsd:anyType">1234567890</item>
<item xsi:type="xsd:anyType">0987654321</item>
</NumbersToWash>
</impl:WashNumbers>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
リクエストをsoapUIに貼り付けて、「item」のタイプを「xsd:anyType」から「xsd:string」に変更すると、正常に動作します。例えば
<SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:impl="http://rtw.dncrtelem" xmlns:arr="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
<SOAP-ENV:Body>
<impl:WashNumbers xmlns:impl="http://rtw.dncrtelem">
<TelemarketerId xsi:type="xsd:string">****</TelemarketerId>
<WashOnlyUserId xsi:type="xsd:string">****</WashOnlyUserId>
<TelemarketerPassword xsi:type="xsd:string">****</TelemarketerPassword>
<ClientReferenceId xsi:type="xsd:string">****</ClientReferenceId>
<NumbersToWash xsi:type="SOAP-ENC:Array" SOAP-ENC:arrayType="xsd:anyType[2]">
<item xsi:type="xsd:string">1234567890</item>
<item xsi:type="xsd:string">0987654321</item>
</NumbersToWash>
</impl:WashNumbers>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
SOAP 呼び出しを作成するときに、そのタイプを明示的に設定するにはどうすればよいですか? 検索しましたが、解決策が見つからないようです。
これが私のPHPコードです:
include_once('lib/nusoap.php');
$client = new nusoap_client('https://www.donotcall.gov.au/dncrtelem/rtw/washing.cfc?wsdl', 'wsdl');
$err = $client->getError();
if($err){
// Error handling here
} else {
$client->setUseCurl(true);
$client->soap_defencoding = 'UTF-8';
$params = array('TelemarketerId'=>'****', 'WashOnlyUserId'=>'****', 'TelemarketerPassword'=>'****', 'ClientReferenceId'=>'****', 'NumbersToWash'=>array('1234567890','0987654321'));
$result = $client->call('WashNumbers', $params);
if ($client->fault) {
// Fault handling here
} else {
$err = $client->getError();
if ($err) {
// Error handling here
} else {
print_r($result);
}
}
}