gpt4 book ai didi

ssl - connection.startTls() 失败

转载 作者:太空宇宙 更新时间:2023-11-03 14:15:28 27 4
gpt4 key购买 nike

我正在尝试使用 TLS 连接到 apacheds,但我得到了一个 LdapOperationException:

PROTOCOL_ERROR:服务器将断开连接!

这是我的代码:

LdapNetworkConnection connection = null;
LdapConnectionConfig ldapConnectionConfig = new LdapConnectionConfig();
ldapConnectionConfig.setUseTls(true);
ldapConnectionConfig.setLdapHost("localhost");
ldapConnectionConfig.setLdapPort(10636);
ldapConnectionConfig.setTrustManagers(new X509TrustManager(){
public X509Certificate[] getAcceptedIssuers(){
return new X509Certificate[0];
}
public void checkClientTrusted(X509Certificate[] arg0, String arg1) throws CertificateException{}
public void checkServerTrusted(X509Certificate[] arg0, String arg1) throws CertificateException{}
});

connection = new LdapNetworkConnection(ldapConnectionConfig);
connection.connect();

try{
connection.startTls();
}catch(LdapException e){
e.printStackTrace();
}

可能是什么问题?

最佳答案

使用端口 10389,10636 用于 LDAPS 连接。

关于ssl - connection.startTls() 失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20751594/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com