Subject: Matrix vNext - Operation Timeout Error
Hello,
xmppClient object is failing to connect to Cisco Finesse and give an error - Operation Timeout Error. Below is the code snippet. This code works fine in a console application, but same is not working from a WPF Application (4.6.1 Framework version). Not sure if i need to add any additional reference.
xmppClient object is failing to connect to Cisco Finesse and give an error - Operation Timeout Error. Below is the code snippet. This code works fine in a console application, but same is not working from a WPF Application (4.6.1 Framework version). Not sure if i need to add any additional reference.
- {
- Username = this._username,
- Password = this._password,
- XmppDomain = this._serverName,
- };
- this.SubscribeForSessionStateChange();
- this.SubcribeForMessageChange();
- this.SubcribeForPresenceChange();
- try
- {
- await xmppClient.ConnectAsync();
- }
- catch (Matrix.AuthenticationException ex)
- {
- OnError.Invoke(this, ex);
- }
- catch (Exception ex)
- {
- OnError.Invoke(this, ex);
- }
This post was edited 2 times, last on 2020-05-07, 11:13 by dotnetnerd.