错误:在nodejs soap中getaddrinfo ENOTFOUND

时间:2015-05-14 06:35:09

标签: javascript node.js soap

我正在使用以下代码,我收到错误。

var soap = require('soap');

var url = 'http://ws.strikeiron.com/GlobalAddressVerification5?WSDL';

soap.createClient(url, function(err, client){
  console.log(err)
  console.log(client)

});

错误:

{ [Error: getaddrinfo ENOTFOUND ws.strikeiron.com]
code: 'ENOTFOUND',
errno: 'ENOTFOUND',
syscall: 'getaddrinfo',
hostname: 'ws.strikeiron.com' }
undefined

我已经设置了npm proxy& .npmrc具有以下条目:

proxy=http://localhost:3128/
https-proxy=http://localhost:3128/

请帮助。

0 个答案:

没有答案