ldapsdk
ldapsdk copied to clipboard
UnboundID LDAP SDK for Java
### Summary It seems I stumbled upon a very specific problem: If a search with an OR filter for a number of attributes is done, and the search term contains...
Relatively recently Microsoft has added support for LDAP channel binding and LDAP signing: https://portal.msrc.microsoft.com/en-US/security-guidance/advisory/ADV190023 Is it part of LDAPv3 protocol? Is it supported by UnboundID LDAP SDK?
There is race condition between closing a connection and asynchronous results being returned. [`LDAPConnection.setClosed`](https://github.com/pingidentity/ldapsdk/blob/master/src/com/unboundid/ldap/sdk/LDAPConnection.java#L4849-L4858) will cancel the timer if one exists. But [`AsyncRequestID.setResult`](https://github.com/pingidentity/ldapsdk/blob/master/src/com/unboundid/ldap/sdk/AsyncRequestID.java#L367-L369) will call `getTimer` which will potentially create...
I noticed this issue while upgrading from 4.0.8 to 6.0.2, and it looks like it's a consequence of 2270056aa8d2a24c195606d55c955e38f4d50870 The way `RoundRobinServerSet` picks a server is balanced when all servers...
Hey everyone. I recently ran into an issue when switching from using Java's naming directory to implementing LDAP integration via the UnboundID ldapsdk. I've extracted the parts that seem to...
I am having the issue described here: https://github.com/pingidentity/ldapsdk/issues/65 So as suggested I am using a paged control: ``` ASN1OctetString resumeCookie = null; do { searchRequest.setControls(new SimplePagedResultsControl(500, null)); SearchResult searchResult =...
Hi, While starting TLS connection with this framework, we have encountered the NPE. First try failed with below reason: **StartTLS error.ResultCode= 82 (local error) message= **The connection reader was unable...
During Burst traffic around 4k LDAP connection are created per seconds , after traffic is completed , in Application we are closing those open LDAP connection. After that we observed...
What is the best way to query an attribute that could be ranged? My use-case: AD LDS returns member;range=0-1499 for a large group. If I include "member" in my list...
Hi, does ldapsdk support ECDSA/ECC client certificates during startTLS? thanks and regards, Adishesh