使用SOAP

时间:2016-03-22 19:40:10

标签: node.js soap node-soap

我目前正致力于基于节点的应用程序尝试向基于SOAP的服务发出请求。我正在使用node-soap模块来解决这个问题。 https://github.com/vpulim/node-soap

目前我有以下实施

var soap = require('soap');
var url = 'http:/xxxx/xxxx/xxxx?WSDL';
var appKey = 'ABYRCEE';
var xml = {
    appKey: appKey,
    mac: 'xxxxxxxx'
}

soap.createClient(url, function(err, client){
    //console.log('Client:', client);
    client.getAllDocsisVideoInfo(xml, function(err, result){
       if(err){
           console.log(err);
       }
    });
});

要使服务响应,我有一个xml格式的样本请求,如下所示

<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:doc="http://xxx.xxx.com">

   <soapenv:Header/>

   <soapenv:Body>

      <doc:getAllDocsisVideoInfo>

         <appKey>"appKey"</appKey>

         <mac>xxxxxxx</mac>

      </doc:getAllDocsisVideoInfo>

   </soapenv:Body>

</soapenv:Envelope>

正如您从上面所看到的,我必须传递 appKey mac 值,并且在成功请求后,这将以xml格式发回成功的响应,适当的回应。

我能够看到客户端对象返回相应的函数,但在调用 client.getAllDocsisVideoInfo(....)时,我似乎看到了跟随错误

  

S:客户端:无法找到{} getAllDocsisVideoInfo的调度方法

我不确定为什么?是因为我在xml对象中传递的方式,我如何传递样本请求?

2 个答案:

答案 0 :(得分:0)

查看node-soap api:

https://www.npmjs.com/package/soap

看起来您必须按以下方式调用该函数:

client.getAllDocsisVideoInfo(xml, function(err, result, raw, soapHeader){

})

如果您想在代码中调用它,那么我认为您需要使用以下内容:

从API复制并粘贴...

client.MyService.MyPort.MyFunction({name: 'value'}, function(err, result) {
      // result is a javascript object 
  })

答案 1 :(得分:0)

因此,在花了好几个小时并敲打我的脑袋后,通过删除名称空间前缀,我能够通过覆盖名称空间前缀获得成功的响应。

例如,以下对象需要作为

传递
var xml = {
    ':appKey': appKey,
    ':mac': 'xxxxxxxx'
}

相反

var xml = {
    appKey: appKey,
    mac: 'xxxxxxxx'
}

这篇node-soap文档[https://github.com/vpulim/node-soap#overriding-the-namespace-prefix][1]帮助解决了这个问题。