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的主要内容,如果未能解决你的问题,请参考以下文章