-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dynamic update of TLS version for Jetty client #11922
Comments
Jetty 11 is now at End of Community Support, you should be using Jetty 12 at this point in time.
For commercial support of Jetty 11, see above listed issues. |
It is the server that decides what TLS version to use, and cannot be forced by the client. You can always use 2 different |
jetty Version=11.0.17
Java Version = 17
Question
I am using jetty as a client to send traffic by using the https with TLSv1.2 or TLSv1.3 version.
Here my ask is that need to update the Jetty TLS version without impacting the existing Connections.
let's say for Server1 there exists connection and after that I want to update the TLS version dynamically so, that next request to server2 should use the new connection with the latest TLS configuration, but existing connection should remain as is and allow traffic with old TLS config.
below code snippet get the webclient.
I have tried some code changes to update the tls version but it is not working.
Kindly please suggest how to update the TLS version dynamically without disturbing the existing connection.
The text was updated successfully, but these errors were encountered: