The unboundid-ldap-sdk tag has no wiki summary.
2
votes
4answers
197 views
programatically querying LDAP permissions
Is there any way to programatically query an OpenLDAP 2.4 server to find out what attributes of some object a user is allowed to modify? Or any way to tell the server to ignore modifications that the ...
1
vote
2answers
277 views
How do I resolve “WILL_NOT_PERFORM” MS AD reply when trying to change password in scala w/ the unboundid LDAP SDK?
I'm wrestling with Active Directory, trying to get it to let me change a password. I've found tons of useful information, but I'm still getting a persistent error.
Some code:
import ...
0
votes
1answer
59 views
Create a LDAP cache using unboundid LDAP SDK?
I would like to make a LDAP cache with the following goals
Decrease connection attempt to the ldap server
Read local cache if entry is exist and it is valid in the cache
Fetch from ldap if there is ...
0
votes
1answer
49 views
Unboundid LDAP SDK - how to process an attribute value consisting of several values?
If you have an attribute which value consists of a comma-separated list of values, which would be the best way to retrieve some part of that value?
Example:
myAttribute: value1, value2, value3, ...
0
votes
1answer
44 views
Unboundid InMemory LDAP SDK - server won't shutdown
I'm using the Unboundid In-Memory Directory Server in my application, and so far it works great (like it so much more than Apache DS). But, when my application is done, and I want to shutdown the ...
0
votes
1answer
253 views
How to get LDAP unboundid AttributeSyntax?
I'm trying to find out the unboundid AttributeSyntax type for a specific attribute name and it's simply not working.
Here's the example test code that I'm using to achieve this:
@Test
public ...
0
votes
1answer
258 views
java sasl authentication with openldap server
Can anyone see any reason this code doesn't work when ldapwhoami -U portal -h yorktown -Y PLAIN -ZZ works just fine? Is there something I'm doing that isn't equivalent?
LDAPConnection connection = ...
0
votes
2answers
361 views
using UnboundID's @LDAPGetter and @LDAPSetter
Does anyone have a basic example of using these two annotations from UnboundID's SDK to persist objects in an LDAP directory? I can't seem to find any info about the type of the argument to the ...