-
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
'UnsupportedOperationException: X509ExtendedKeyManager only supported on Server' after upgrading to 9.4.24 #4425
Comments
@mkemmerz The issue is that we had to split the |
@gregw Thanks for the information and hint! I will give it a try. |
I was able to solve the issue by using Due to the explanation that you split the Just a small example how I fixed it (if someon else encounters this problem): SslContextFactory sslContextFactory = new SslContextFactory("server.pkcs12");` changed to SslContextFactory.Server sslContextFactory = new SslContextFactory.Server();
sslContextFactory.setKeyStorePath("server.pkcs12"); |
The error message was updated in Current message is ... |
Closing as this was addressed in issue #4385 |
We upgraded from 9.4.22.v20191022 to 9.4.24.v20191120, Java 11.
We are encountering a new exception that prevents our software from working correctly. On startup Jetty calls a method that has been marked as deprecated in 9.4.24 (deprecated list).
Jetty calls the method internally so I am not sure if our team has to do changes on our side or it is a bug.
The changes effecting this issue were done in #4325
Stacktrace:
Jetty calls the deprecated method in SslContextFactory.java:1255
My guess would be that Jetty uses the non-deprecated method to create such an object? Has this been missed or was it on purpose?
Any idea how to prevent this from happening? If we don't use a certificate for the software everything is working fine. It only starts to cause issues if we try to use a certificate.
@joakime Maybe you can provide any insight or help?
The text was updated successfully, but these errors were encountered: