Re: Net::XMPP::Client

2018-08-24 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()

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 > > > &g

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 <htt

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&qu

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

Net::XMPP::Client

2018-06-15 Thread hw
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 receive messages? -- To