[
https://issues.redhat.com/browse/WFLY-13249?page=com.atlassian.jira.plugi...
]
Sonia Zaldana commented on WFLY-13249:
--------------------------------------
This error is caused by conflicting TLS versions in the client and server. On the client
side, SSLContext.getInstance("TLS") behaves differently for IBM JDK than with
the Oracle implementation. With the Oracle implementation, the protocols TLS V1.0, V1.1
and V1.2 are enabled. On the other hand, with IBM, only TLS V1.0 is enabled. Since the
server was set up to use TLSv1.2 explicitly, the solution is matching the TLS version on
the client side to the server side version.
WebSecurityCERTTestCase fails on IBM JDK when elytron is enabled
----------------------------------------------------------------
Key: WFLY-13249
URL:
https://issues.redhat.com/browse/WFLY-13249
Project: WildFly
Issue Type: Bug
Components: Security, Test Suite
Reporter: Fabio Burzigotti
Assignee: Sonia Zaldana
Priority: Major
The WebSecurityCERTTestCase fails only on IBM JDK, due to the following root cause:
{code}
Caused by: java.security.NoSuchAlgorithmException: SunX509 TrustManagerFactory not
available
{code}
which in turn is due to the fact that the used algorithm is not available on IMB JDK, see
for instance
https://www-01.ibm.com/support/docview.wss?uid=swg1IT04505
--
This message was sent by Atlassian Jira
(v7.13.8#713008)