Paul-Ecchi
01-29-2004, 01:40 AM
I am working on a program where I will need to verify a list of URLs to see if they are genuine registered domains or not. I am trying to use the Net module along these lines :
use Net::Whois
$url="xxxxx.com";
$result = Net::Whois::Domain->new($url);
if(!$result->OK)(print "domain does not exist\n"};
But I always get an error " "xxxxx.com" is not exported by the Net::Whois module" What am I doing wrong ?
use Net::Whois
$url="xxxxx.com";
$result = Net::Whois::Domain->new($url);
if(!$result->OK)(print "domain does not exist\n"};
But I always get an error " "xxxxx.com" is not exported by the Net::Whois module" What am I doing wrong ?