Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 12 Apr 2011 11:13:37 +0400
From:      Dmitry Kubov <dk@garant.ru>
To:        milki <milki@rescomp.berkeley.edu>
Cc:        perl@FreeBSD.org
Subject:   Re: p5-Net-XMPP outdated
Message-ID:  <4DA3FBA1.7050102@garant.ru>
In-Reply-To: <20110412065303.GA80051@hal.rescomp.berkeley.edu>
References:  <4D930E0A.7090007@garant.ru> <20110330140539.GI6091@hal.rescomp.berkeley.edu> <4D934C5D.5090907@garant.ru> <20110407212325.GS6091@hal.rescomp.berkeley.edu> <4DA2A3B7.4050208@garant.ru> <20110411100202.GX6091@hal.rescomp.berkeley.edu> <4DA2D4C8.80603@garant.ru> <20110411103340.GY6091@hal.rescomp.berkeley.edu> <4DA3F4D5.7070000@garant.ru> <20110412065303.GA80051@hal.rescomp.berkeley.edu>

next in thread | previous in thread | raw e-mail | index | archive | help

> On 10:44 Tue 12 Apr     , Dmitry Kubov wrote:
>> Still same error.
> Ok. This is probably a problem with an incompatibility with sendxmpp and
> Net::XMPP. I suggest you talk to both developers and present the test
> case case. The developer for Net::XMPP may have changed something that
> makes it incompatible with sendxmpp.
>
> [0] http://sendxmpp.platon.sk/
> [1] https://github.com/dap/Net-XMPP
>

Seems its not related to sendxmpp. Found simple script:

#! /usr/bin/perl

use Net::XMPP;
my $con=new Net::XMPP::Client();
$con->Connect(hostname=>"jabber.ru");
$con->AuthSend(username=>"user",
                         password=>"password",
                         resource=>"ALARM!");
my $msg=new Net::XMPP::Message();
$msg->SetMessage(to=>"reciver\@jabber.ru",
                  from=>"user\@jabber.ru",
                  body=>"My FirstJabber  Message FromFreeBSD");
$con->Send($msg);
$con->Disconnect();

edited to match my user/password/domain and got:

Can't call method "can_read" on an undefined value at 
/usr/local/lib/perl5/site_perl/5.10.1/XML/Stream.pm line 1492.

I have recent p5-XML-Stream-1.23.04




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?4DA3FBA1.7050102>