this示例之后,我使用unboundid SDK创建了安全的LDAP连接。

我可以使用以下代码为不安全的服务器创建LDAPConnectionPool。

LDAPConnectionPool connectionPool = new LDAPConnectionPool(serverSet, bindRequest, 10);


如何为多个服务器(ldap和ldaps)(即安全和不安全)创建LDAPConnectionPool。

最佳答案

Serverset

LDAPConnectionPool connectionPool = new LDAPConnectionPool(serverSet, bindRequest, 10);可以设置socketFactory

因此,无论您的服务器集是“ failoverSet”还是“ roundRobinSet”,它都可以在其构造函数中设置socketfactory,例如

roundRobinSet = new RoundRobinServerSet(addresses, ports, socketFactory);

09-25 20:22