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
I am able to connect to an Openfire XMPP server configured to require TLS 1.0 but it doesn't work with TLS 1.2. I traced this down to the StartTLS() method which sets the protocol to SslProtocols.Tls which specifies TLS 1.0.
I changed it to TLS 1.2 and it works. It seems the JabberClient should expose the desired TLS protocol as a property that can be configured when the client is instantiated.
The text was updated successfully, but these errors were encountered:
I am able to connect to an Openfire XMPP server configured to require TLS 1.0 but it doesn't work with TLS 1.2. I traced this down to the StartTLS() method which sets the protocol to SslProtocols.Tls which specifies TLS 1.0.
I changed it to TLS 1.2 and it works. It seems the JabberClient should expose the desired TLS protocol as a property that can be configured when the client is instantiated.
The text was updated successfully, but these errors were encountered: