我正在使用以下代码,我收到错误。
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/
请帮助。