SOAP Request Error using Strong Soap npm package with Nodejs

63 Views Asked by At

When I try with soap ui or axios everything is working fine but I try to make a request using strong-soap I got the following error.

 try {
  let url = 'http://10.254.173.170:7800/GetInfoFin/GetInfoFin?wsdl';
  let args = { "Username": "CRM", "Password": "123", "IP": "127.0.0.0","ServiceIdentifierType": "PSTN", "ServiceIdentifier": "0512300858", };
 soap.createClient(url, function (err, client) {
   console.log(client.describe())
   client.GetInfoFinHttpService.GetInfoFinHttpPort.GetInfoFin(args, function (err, result) {
     res.send(err)
   });
 });
 } catch (error) {
 }
0

There are 0 best solutions below