ldapsdk icon indicating copy to clipboard operation
ldapsdk copied to clipboard

UnboundID LDAP SDK for Java

Results 93 ldapsdk issues
Sort by recently updated
recently updated
newest added

Resolves #163 Hello, while doing load tests I ran into a problem with threads blocking when reading from InMemoryDirectoryServer as it is using synchronized blocks, so I replaced them with...

I have a code like this: List dns = ... List entries = new ArrayList() for(dn: dns) entries.add(connection.getEntry()) I don't like this code because it makes n ldap calls. Is...

I investigated https://docs.ldap.com/ldap-sdk/docs/javadoc/com/unboundid/ldap/sdk/DeleteRequest.html and looks like it allows to remove only a single entry(with subtree if delete subtree control is passed). In my use case I want to remove multiple...