如何使用node-soap库将文件附件添加到soap请求?

Ant*_*ine 4 soap-client node.js node-soap

我需要向node.js应用程序的soap请求添加文件附件。

我能够使用node-soap库发送请求,现在我需要向该请求添加文件。

我使用Java客户端或soapUI进行了此操作,但是我必须在node.js中进行操作,也许可以覆盖默认请求对象吗?

Ant*_*ine 5

我没有找到使用node-soap的解决方案,我不得不手动构建我的soap请求:

var soapHeader = '<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"><soapenv:Header/><soapenv:Body><ws:method>';
var soapFooter = '</ws:method></soapenv:Body></soapenv:Envelope>';

function sendSoapRequestWithAttachments(soap,files){
   var soapRequest = jsonToXml.buildObject(mail);
   var finalSoapRequest = soapHeader + soapRequest + soapFooter;
   var multipartMail = [];

    // Add soap request
    multipartMail.push({
        'Content-Type': 'text/xml; charset=utf-8',
        body: finalSoapRequest
    });
    // Add attachments
    if (files) {
        files.forEach(function (file) {
            multipartMail.push({
                'Content-Id': '<' + file.uuid + '>',
                'Content-Type': 'application/octet-stream',
                'Content-Transfer-Encoding': 'binary',
                body: fs.createReadStream(file.path)
            });
        });
    }
    var options = {
        uri: URL,
        method: 'POST',
        multipart: multipartMail
    };
    request.post(options, function (error, response) {
        ...
    }
}
Run Code Online (Sandbox Code Playgroud)