Subject: Unable to connect to CISCO Finesse secure port 5223
We are trying to connect to CISCO finesse secure port 5223 using Matrix Library for Notifications. Using Pidgin it is working prfectly but from our application its not.
When we comare wireshark logs for both then we can see that Pidgin request using TLS1.2 where as Matrix request using TLSv1.
So as per the post in this forum we are setting the TLS12 explicitely but its still not working.
Here is the code:
Can you help us what we are missing here so that matrix will use the TLS 1.2
When we comare wireshark logs for both then we can see that Pidgin request using TLS1.2 where as Matrix request using TLSv1.
So as per the post in this forum we are setting the TLS12 explicitely but its still not working.
Here is the code:
- this.xmppClient.SetUsername(username);
- this.xmppClient.Password = password.ToUnsecureString();
- this.xmppClient.SetXmppDomain(domain);
- this.xmppClient.Port = 5223;
- this.xmppClient.OldStyleSsl = true;
- this.xmppClient.TlsProtocols = SslProtocols.Tls12;
Can you help us what we are missing here so that matrix will use the TLS 1.2