-
Notifications
You must be signed in to change notification settings - Fork 37
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
Support of TLSv1.3 by JDK Client #707
Conversation
Signed-off-by: Jorge Bescos Gascon <[email protected]>
… protocol name Signed-off-by: Jorge Bescos Gascon <[email protected]>
Support TLSv1.3 Signed-off-by: Jorge Bescos Gascon <[email protected]>
Hi @jbescos , I was looking into #676, too (which is actually not related to java 11but rather to TLS 1.3 ) detailsProblem is located just a quick question: edit Kind regards |
@nuessgens I was checking the rehandshaking in the tlsv13 and there is a ticket reused for rehandshaking. In TLSv13 the handshake status where there was a rehandshake was other different than NOT_HANDSHAKING and FINISHED, so the isHandshaking() was not true. I don't remember what was the status but it is easy to reproduce if you remove the !tlsv13 and print some line with the status. My conclusion was that the rehandshake is not needed, as we have some tests that tests rehandshaking and after executing them around 1400 times it was also successful. We also tested the TCK in Weblogic (that uses the JDK connector) and it was fine. |
Is this ever going to be released, even as a beta? The Jenkins project is waiting to pick up a fix for JENKINS-61212. |
@jansupol ^^ |
I'll wait a little for @jansupol, but if nothing else I can release a "-M1" of the current master. |
After discussion on the list, we should be able to get this out next week. Thanks for the patience of everyone! |
Tyrus 1.18 is out. |
Does #741 mean that this fix is also available in https://github.com/eclipse-ee4j/tyrus/releases/tag/2.0.1? |
Partially fixes #697
I found 2 problems:
Before merging this, I would like that we test it more. I guess we should try this generated jar to execute TCKs, and some more tests where they are running during days.