2

出现错误 - javax.net.ssl.SSLHandshakeException:服务器选择了 TLSv1,但在调用安全 Web 服务时,客户端未启用或不支持该协议版本。

按照 oracle 站点中的建议,将以下选项附加到 mydomain\bin\ setDomainEnv.cmd 中的 JAVA_OPTIONS 变量,但问题相同。

-Dweblogic.security.SSL.protocolVersion=TLS1

        Java client code :
        File pKeyFile = new File("C:\\myJKS.jks");   
        if (pKeyFile.exists() && !pKeyFile.isDirectory()) {
            logger.debug("JKS file exists, and it is a file");
        }
        KeyStore keyStore = KeyStore.getInstance("JKS");
        keyStore.load(new FileInputStream(pKeyFile.toString()),
                pKeyPassword.toCharArray());
        KeyManagerFactory keyManagerFactory = KeyManagerFactory
                .getInstance("SunX509");
        keyManagerFactory.init(keyStore, pKeyPassword.toCharArray());
        **SSLContext context = SSLContext.getInstance("TLSv1.1");**
        context.init(keyManagerFactory.getKeyManagers(), null,
                new SecureRandom());
        sockFact = context.getSocketFactory();
        if(sockFact == null){
            logger.debug("SocketFactory is null");
            throw new NullPointerException("socketFactory == null");
        }

Client Env - JDK 版本:7,应用服务器:Weblogic。

试图让它从几天开始工作,但没有运气。

4

0 回答 0