You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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();
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.
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")
};
The text was updated successfully, but these errors were encountered: