0

我正在制作一个 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 为空。

有任何想法吗?

4

2 回答 2

2

您忘记将 base64 数据封装在数组标签中。

<array>JVBERi0xLjQNJeLjz9MNCjYgMCBvYmogPDwvTGluZWFyaX==</array>

像这样的东西应该工作:

$params = array(
    'in0' => $session,
    'in1'   => $candidate_id,
    'in2'   => 'test.txt',
    'in3'   => 'test.txt',
    'in4'   => 'text/plain',
    'in5'   => array('array' => $B64File)
);
于 2012-10-15T15:45:43.833 回答
0

很明显,我必须对数组标签做一些事情,这是肯定的。

上面的答案值得“投票”,所以我给了它一个。但是我自己找到了正确的答案……经过几秒钟的“逻辑”思考。:)

'in5'   => array('array' => $B64File)
于 2012-10-15T17:06:33.917 回答