0

当我尝试使用 soap ui 或 axios 时,一切正常,但我尝试使用 strong-soap 发出请求,但出现以下错误。

 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) {
 }
4

0 回答 0