0

我正在尝试使用发送到贝宝。

我收到一条错误消息,指出我的信任管理器尚未初始化。(我认为)。

这是我进入 SSL 的第一步,所以我可能没有正确设置。我得到 SslConfigurationException。

public static SSLContext setupClientSSL(String certPath, String certPassword)
        throws SSLConfigurationException {
    SSLContext sslContext = null;
    try {
        KeyManagerFactory kmf =
                KeyManagerFactory.getInstance(KeyManagerFactory.getDefaultAlgorithm());

        KeyStore ks = p12ToKeyStore(certPath, certPassword);
        kmf.init(ks, certPassword.toCharArray());
        //sslContext = getSSLContext(kmf.getKeyManagers());
        sslContext = SSLContext.getInstance("SSL", "IBMJSSE2");
    } catch (NoSuchAlgorithmException e) {
        throw new SSLConfigurationException(e.getMessage(), e);
    } catch (KeyStoreException e) {
        throw new SSLConfigurationException(e.getMessage(), e);
    } catch (UnrecoverableKeyException e) {
        throw new SSLConfigurationException(e.getMessage(), e);
    } catch (CertificateException e) {
        throw new SSLConfigurationException(e.getMessage(), e);
    } catch (NoSuchProviderException e) {
        throw new SSLConfigurationException(e.getMessage(), e);
    } catch (IOException e) {
        throw new SSLConfigurationException(e.getMessage(), e);
    }
    return sslContext;
}
4

1 回答 1

1

信息中心有使用Java 安全套接字扩展的文档,包括设置和示例代码。

于 2013-06-18T13:07:45.077 回答