Re: Net::XMPP::Client

2018-08-24 Thread hw
On 06/15/2018 11:59 PM, Chas. Owens wrote: Look at the SetMessageCallBacks method in Net::XMPP::Protocol.   It lets you set the function to run when a message of a specific type comes in. Thanks, that works great :) On Fri, Jun 15, 2018 at 5:34 AM hw mailto:h...@gc-24.de>> wrote: On

Re: Net::XMPP::Client

2018-06-15 Thread Chas. Owens
Look at the SetMessageCallBacks method in Net::XMPP::Protocol. It lets you set the function to run when a message of a specific type comes in. On Fri, Jun 15, 2018 at 5:34 AM hw wrote: > On 06/15/2018 02:21 PM, Chas. Owens wrote: > > In Net::XMPP::Client it says > > > > For a full list of high

Re: Net::XMPP::Client

2018-06-15 Thread hw
On 06/15/2018 02:21 PM, Chas. Owens wrote: In Net::XMPP::Client it says For a full list of high level functions available please see Net::XMPP::Protocol. In that documentation it says $Con = new Net::XMPP::Client(); # From $status = $Con->Connect(hostname=>"jabber.org "); #

Re: Net::XMPP::Client

2018-06-15 Thread Chas. Owens
In Net::XMPP::Client it says For a full list of high level functions available please see Net::XMPP::Protocol. In that documentation it says $Con = new Net::XMPP::Client(); # From $status = $Con->Connect(hostname=>"jabber.org"); # Net::XMPP::Client $Con->Send("XML"); On Fri, Jun 15, 2018, 03

Re: Net::XMPP::Client

2018-06-15 Thread hw
On 06/15/2018 12:37 PM, hw wrote: Hi, using Net::XMPP::Client, I am able to send messages, but I don´t see a way to receive messages.  The documentation leaves me entirely in the dark as to how to do this, and I couldn´t find an example using this module to receive messages. So how can I r