1

我正在尝试使用 node-soap 连接到第三方 Web 服务,但是每当我使用来自 Web 服务的方法时,我都会得到一个巨大的对象,而不是正确响应的数据。

var soap = require('soap');
var soapWSDL = "https://staging.refcheckadvanced.co.za/RefCheck_Integrator/services/v2/RefCheck.svc?wsdl";

soap.createClient(soapWSDL, function (err, client) {
if (err) throw err;
    client.IsHealthy({}, function(err,result) {
        console.log(result);
    });
});

有谁知道我做错了什么?

PHP SOAP 信封:

    <SOAP-ENV:Body>
        <ns1:IsHealthy/>
    </SOAP-ENV:Body>
</SOAP-ENV:Envelope>

节点 SOAP 信封:

    <soap:Body>
        <tns:IsHealthy xmlns:tns="http://tempuri.org/" xmlns="http://tempuri.org/">
        </tns:IsHealthy>
</soap:Body>
</soap:Envelope>

有没有办法将 node-soap 配置为使用与 PHP 相同的格式?

4

1 回答 1

1

wsdl 是动态生成的还是静态生成的?它对我有用...

我的回应是:{ IsHealthyResult: '2015/02/03 11:56:48 AM' }

但是现在当我尝试 node-soap 时会抛出一个错误(你不处理)

试试这个,你会(也许)看到err已经设置好了:

soap.createClient(soapWSDL, function (err, client) {
if (err) throw err;
    client.IsHealthy({}, function(err,result) {
        if (err) {
            console.log(err.message);
        } else {
            console.log(result);
        }
    });
});

回报:Cannot read property 'Body' of undefined

尝试使用节点检查器(跨平台)或NTVS(Windows + Visual Studio)进行调试

您将看到 node-soap 捕获异常\lib\client.js:183并在回调中设置错误。为什么它短暂地对我有用,我不知道... =P

但这提醒您始终检查err回调

于 2015-02-03T10:57:04.557 回答