w3b has asked for the wisdom of the Perl Monks concerning the following question:
thx :)#!/usr/bin/perl use warnings; use strict; use Tk; use diagnostics; use Net::Jabber; my $con = new Net::Jabber::Client(); $con->SetCallBacks("message" => \&InMessage, "presence" => \&InPresence, "iq" => \&InIQ ); my $lol = $con->Connect(hostname => 'chrome.pl'); my $hm = $con->AuthSend(username=>'login', password=>'password', resource=>'w3b'); print $hm;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Jabber - temporary-auth-failure
by gellyfish (Monsignor) on May 12, 2006 at 19:24 UTC |