I'm looking for a standalone Java library which allows me to parse LDAP style filter expressions Is such thing available, or is it advisable to use ANTLR instead and build it ...
I'm having problems with ldap search filters.
I want to search through all the children of a root node. I want the users where the username of the email contains the query ...
in this project we intend to reuse ldap search expressions for a system other than the LDAP server itself.
The idea is to fetch the expression - something like (|(attr1='A')(!(attr2='1'))) - and ...
Hello, I just stumbled upon the ranch and I am glad I did. Well the reason I was searching the internets like mad for a few hours is this: I need to integrate an old application into my employers standard LDAP authentication, using Struts, running on Websphere, replacing the old custom application-database login mechanism. The way login was achieved was by ...
Hello, I am using this query to get the OUs below a certain OU location from my LDAP: String filter = "(&(description=*)(objectCategory=organizationalUnit))"; NamingEnumeration results = ctx.search(distinguishedName, filter, controls); The method which runs this search receives the distinguishedName as a parameter. This distinguishedName specifies from which place to start the search. The problem is that I receive all the OUs below the ...
I think it's just an encoding issue because if I locate that second record through a wildcard search, I can pass around its DN internally and update the record. I just can't load it from CSV or hard coded Junit args. So, I think I need to perform some sort of encoding on it, but, to be honest, I am very ...