filter « ldap « Java Enterprise Q&A





1. Is there a standalone Java library which provides LDAP style parsing?    stackoverflow.com

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 ...

2. ldap search filter with java    stackoverflow.com

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 ...

3. LDAP search filter expression utility or library    stackoverflow.com

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 ...

4. How to construct search filter for a java ldap search api ,when object name has single or double quote in it    stackoverflow.com

I have an object, cn=abc"and'def in the directory. I am using the Java search API:

public LDAPSearchResults search(java.lang.String base,
    int scope,
    java.lang.String filter,
    ...

5. LDAP authentication + filter + redirect = mess    coderanch.com

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 ...

6. Need help in filter syntax for LDAP search    coderanch.com

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 ...

7. character encoding for ldap filters    forums.oracle.com

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 ...

8. Ldap search filter for Active Directory    forums.oracle.com