我正在制作一个 Drupal/PHP 模块,以使用 SOAP 将信息上传到 Taleo(人才管理)数据库。这适用于文本和日期等常规数据,但不适用于文件。
该手册显示了一个文件附件的示例:
createAttachment Test Case:
<soapenv:Header/>
<soapenv:Body>
<urn:createAttachment>
<in0>webapi-5616904436472928038</in0>
<in1>15</in1>
<in2>test1.docx</in2>
<in3>test1.docx</in3>
<in4>application/vnd.openxmlformatsofficedocument.
wordprocessingml.document</in4>
<in5>
<!--type: base64Binary-->
<array>JVBERi0xLjQNJeLjz9MNCjYgMCBvYmogPDwvTGluZWFyaX==</array>
</in5>
</urn:createAttachment>
</soapenv:Body>
</soapenv:Envelope>
所以我做了一个这样的PHP文件:
// Send attachment
$fileName = drupal_get_path('module', 'taleo') . '/test.txt';
$rawFile = fread(fopen($fileName, "r"), filesize($fileName));
$B64File = base64_encode($rawFile);
$params = array(
'in0' => $session,
'in1' => $candidate_id,
'in2' => 'test.txt',
'in3' => 'test.txt',
'in4' => 'text/plain',
'in5' => $B64File
);
$client_taleo->__call('createAttachment', $params);
当我执行“echo $B64File”时,我得到这个:RmlsZSB1cGxvYWQgd2l0aCBEcnVwYWwgIQ==,所以文件被正确读取。
但我总是得到这个错误:
错误:soapenv:Server.generalException-attBinDataArr 为空。
有任何想法吗?