Schrift
[thread]10934[/thread]

whois query



<< >> 3 Einträge, 1 Seite
Gast Gast
 2007-11-30 23:33
#103342 #103342
Hi,

ich würd gern ein paar whois Abfragen machen und hab mir das modul CPAN:Net::Whois::RIPE::Object installiert aber Blick da nich wirklich durch.

Code: (dl )
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
use Net::Whois::RIPE::Object;


$object = new Net::Whois::RIPE::Object;
$object->debug(1);


while ($line = $whois_socket->get()) {
($attribute,$value) = ($line =~ /^(.+?):\s+(.+)$/);
next unless $attribute;
$object->add($attribute,$value);
}

$object->success || die;

foreach $attribute ($object->attributes()) {
foreach $value ($object->$attribute()) {
printf "%s: %-s\n", $attribute, $value;
}
}

print $object->content; # raw content from whois server



bekomme folgende Fehlermeldung:
Code: (dl )
1
2
3
Name "main::whois_socket" used only once: possible typo at ./whois.pl line 9.
expecting a handle at ./whois.pl line 5
Can't call method "debug" on an undefined value at ./whois.pl line 6.


Jemand eine Idee?
Gast Gast
 2007-11-30 23:53
#103343 #103343
Ok habs, bissi geändert und einen whois server braucht man natürlich auch :D
nepos
 2007-12-01 13:48
#103349 #103349
User since
2005-08-17
1420 Artikel
BenutzerIn
[Homepage] [default_avatar]
Code: (dl )
use strict;
haette dir da gleich geholfen :P
<< >> 3 Einträge, 1 Seite



View all threads created 2007-11-30 23:33.