无法以编程方式调用SOAP API wsdl方法

时间:2018-03-15 07:37:18

标签: node.js soapui

Screenshot of first part of request through soap
我需要调用wsdl中定义的方法。我可以使用SOAP UI来做到这一点。我在屏幕截图中看到以下响应:
Screenshot of 2nd part of request through soap

然后我尝试使用与SoapUP模块相同的参数访问相同的方法,使用以下javascript代码

soap.createClient(url, function(err, client) {
//console.log(client)
  client.<<wsdlFunctionName>>(args, function(err, result) {
      console.log(result);
  });
});

我收到以下错误 “未处理的拒绝错误:a:InternalServiceFault:对象引用未设置为对象的实例。”

0 个答案:

没有答案