SSLC0008E: Unable to initialize SSL Connection Websphere 8 error

Asked

Viewed 549 times

0

I’m with the following error when I was climbing an application using WAS 8.0 and Eclipse Mars, I searched a lot of things on the internet, but I couldn’t find anything that would help, I even tried to change the version of JDK

Or things like:

https://help.eclipse.org/mars/index.jsp?topic=%2Forg.eclipse.rse.doc.user%2Ftasks%2Ftworkssl.html

https://stackoverflow.com/questions/3566240/websphere-7-ssl-error-that-never-goes-away-no-matter-what-i-do

SSLHandshakeE E   SSLC0008E: Unable to initialize SSL connection.  Unauthorized access was denied or security settings have expired.  Exception is javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?
    at com.ibm.jsse2.c.a(c.java:109)
    at com.ibm.jsse2.SSLEngineImpl.a(SSLEngineImpl.java:32)
    at com.ibm.jsse2.SSLEngineImpl.unwrap(SSLEngineImpl.java:275)
    at javax.net.ssl.SSLEngine.unwrap(SSLEngine.java:29)
    at com.ibm.ws.ssl.channel.impl.SSLConnectionLink.readyInbound(SSLConnectionLink.java:535)
    at com.ibm.ws.ssl.channel.impl.SSLConnectionLink.ready(SSLConnectionLink.java:295)
    at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConnectionInitialReadCallback.java:214)
    at com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitialReadCallback.java:113)
    at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:175)
    at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
    at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
    at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:138)
    at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:204)
    at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:775)
    at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:905)
    at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1700)

I have not been able to find a solution so far, if anyone can help me I thank.

1 answer

1


The problem was the version of JDK, was using the 8, I had to go back to the same version 7, thus changing the eclipse.ini file.:

-vm
/Program Files/Java/jre1.7.0_80/bin/javaw.exe
-startup
plugins/org.eclipse.equinox.launcher_1.3.100.v20150511-1540.jar
--launcher.library
plugins/org.eclipse.equinox.launcher.win32.win32.x86_64_1.1.300.v20150602-1417
-product
org.eclipse.epp.package.jee.product
--launcher.defaultAction
openFile
--launcher.XXMaxPermSize
256M
-showsplash
org.eclipse.platform
--launcher.XXMaxPermSize
256m
--launcher.defaultAction
openFile
--launcher.appendVmargs
-vmargs
-Dosgi.requiredJavaVersion=1.7
-Xms256m
-Xmx1024m

This made the project "rise"

Browser other questions tagged

You are not signed in. Login or sign up in order to post.