我使用unboundid SDK在this示例后创建了安全LDAP连接。
我可以使用以下代码为不安全的服务器创建LDAPConnectionPool。
LDAPConnectionPool connectionPool = new LDAPConnectionPool(serverSet, bindRequest, 10);
如何为多个服务器(ldap和ldaps)创建LDAPConnectionPool,即安全和不安全。
答案 0 :(得分:0)
Serverset
LDAPConnectionPool connectionPool = new LDAPConnectionPool(serverSet, bindRequest, 10);
可以设置socketFactory
所以无论您的服务器集是“failoverSet”还是“roundRobinSet”,它都可以在其构造函数中设置socketfactory,如
roundRobinSet = new RoundRobinServerSet(addresses, ports, socketFactory);