Neil Wilson

Results 175 comments of Neil Wilson

You will need to check out and build the LDAP SDK for yourself to test the changes I've made for this issue. To do that, just use: git clone https://github.com/pingidentity/ldapsdk.git...

There's not really any actual question here, but I assume that you're encountering this error and would like to know why. First, that error is coming from the directory server...

Use the LDAPConnection.bind method to submit an appropriate bind request. The easiest and most common type of bind is an LDAP simple bind, which authenticates with the DN and password...

That call will perform a bind on a connection from the connection pool, but the problem is that if you subsequently try to perform another operation that requires a previous...

No, there is not, at least not in standard LDAP. You can only delete a single entry at a time, unless it's a subtree and the server you're using supports...

That's up to you. Any real directory server should be able to concurrently process multiple requests received on the same connection (although it may impose limits on how much concurrency...

Sorry for the terse response, but I'm on vacation and on my phone. I may also not be able to follow up immediately if you have additional questions, but I'll...

I have no idea whether Active Directory supports entryDN. It's easy enough for you to test yourself by requesting it when retrieving an entry. However, I wouldn't count on it...

I apologize for not responding to this earlier. This is something that I had considered in the past, but avoided for a couple of reasons: * I had been concerned...

The LDAP SDK doesn’t have anything that can do this by default. It typically relies on the operating system’s logic for routing requests to the appropriate destination. However, there are...