2016-09-15 110 views
0

我想使用JDK7在glassfish 3.1.2.2(build 5)上启用TLS1.2,我知道JDK7启用TLSv1.2,TLSv1.1,TLSv1(默认)和SSLv3。在glassfish上启用TLS1.2 3.1.2.2

我已经将JDK版本从JDK6升级到JDK7,我通过SOAPUI客户端(通过设置-Dsoapui.https.protocols = TLSv1.2来启用SOAPUI的TLS1.2)连接到glassfish服务器以测试Web服务应用程序。

以下错误正在从服务器返回。

ERROR:javax.net.ssl.SSLHandshakeException: Server chose TLSv1, but that protocol version is not enabled or not supported by the client.

我很困惑为什么glassfish没有选择握手的最新TLS版本(TLS1.2)。

Also found a glassfish blog (https://java.net/projects/glassfish/lists/users/archive/2012-07/message/85) stating glassfish3.1.2 had issues running TLS1.2 with JDK1.7

有没有人通过TLS1.2成功连接到glassfish3?

回答

相关问题