nodejs soap 0.18.0

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nodejs soap 0.18.0相关的知识,希望对你有一定的参考价值。

用nodejs soap 0.2.7以上版本时,总是调用不成功,经研究原代码发现,必须设置wsdlOptions属性,才能正常调用。

 

var wsdlOptions = {
        endpoint:endpoint,
        attributesKey: ‘$attributes‘,
        ignoredNamespaces: {
            namespaces: [],
            override: true
        }

    };

 

  soap.createClient(url, wsdlOptions,  function(err, client) {

        client.方法名(参数, function(err, result) {
            console.log(result);
        });
    });

以上是关于nodejs soap 0.18.0的主要内容,如果未能解决你的问题,请参考以下文章

nodejs与模块soap的用法

nodejs post 请求soap 报错.大神求助

NODEJS SOAP:未将对象引用设置为对象的实例

在NodeJS中使用node-soap时出错

用nodejs调用webservice

NODEJS / PHP WSDL SOAP:未将对象引用设置为对象的实例