1. Is there a standalone Java library which provides LDAP style parsing? stackoverflow.comI'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.comI'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.comin 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.comI have an object,
|
5. LDAP authentication + filter + redirect = mess coderanch.comHello, 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.comHello, 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.comI 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 |
9. process LDAP filters like (&(cn=a)|((sn=b)(uid=c))) to form java expression forums.oracle.com |