码迷,mamicode.com
首页 > Web开发 > 详细

nodejs soap 0.18.0

时间:2016-12-06 07:40:59      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:att   ace   cti   版本   options   override   res   end   ejs   

用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

标签:att   ace   cti   版本   options   override   res   end   ejs   

原文地址:http://www.cnblogs.com/hellowangzhi/p/6136136.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!