smiley22 / S22.Xmpp

S22.Xmpp is an easy-to-use and well-documented .NET assembly for communicating with an XMPP server. It supports basic Instant Messaging and Presence funtionality as well as a variety of XMPP extensions.
MIT License
54 stars 91 forks source link

Not getting state change events #22

Open udaykvv opened 3 years ago

udaykvv commented 3 years ago

Am able to connect to FInesse server using below code and am also getting events when agent Sign In/Sign Out of the agent desktop. But am not getting event notifications when agent state changes like from Ready to Not Ready or any other states.

XmppClient client = new XmppClient(hostname, username, password); client.Connect();

client.StatusChanged += (sender, args) => { Console.log("status changes") };

ekav555 commented 3 years ago

Did you review my change? I got this working. See by PR i added a few weeks ago. https://github.com/smiley22/S22.Xmpp/pull/21/commits/d42926653be805fcb7eb9ae895837f08fd06f09e

udaykvv commented 3 years ago

Did you review my change? I got this working. See by PR i added a few weeks ago. d429266

Thank yo so much, it fixed my issue.

ekav555 commented 3 years ago

Glad I could help.

Sent from my iPhone, please excuse typos.

On Apr 30, 2021, at 14:00, Veera[Uday] @.***> wrote:

 Did you review my change? I got this working. See by PR i added a few weeks ago. d429266

Thank yo so much, it fixed my issue.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub, or unsubscribe.