Forums
Our java application runs on WebSphere 8.5.5 and IBM Java 1.8
When attempting to connect to OneSpan the TLS Cipher negotiation is resulting in dropping down to TLS 1 which OneSpan then rejects.
So in the java sdk com.silanis.esl.sdk.internal.Client.java
protected SSLConnectionSocketFactory buildSSLSocketFactory() throws HttpException {
try {
SSLContext sslContext = SSLContext.getInstance("SSL");
sslContext.init(null,
Is causing TLS negotiation to fail on the IBM Java runtime.- Read more about IBM Java and TLS
- 2 comments
- Log in or register to post comments
- 199 views