vote up 5 vote down star
2

We are using J2EE to develop a security product that relies on LDAP for authentication and role-based user management.

The team has implemented this using the JNDI but we have run into various pitfalls. I am looking for an LDAP API that handles all the low-level details and satisfies the following requirements:

  1. LDAP User authentication and Authorization
  2. Good performance (even with large and slow LDAP servers)
  3. Support the main LDAP flavors (AD, Novell eDirectory etc.)

Can anyone recommend an open source or commercial package?

flag

33% accept rate

6 Answers

vote up 2 vote down

http://www.openldap.org/jldap/

link|flag
vote up 2 vote down

I've used Spring's LDAP modules. I think they make programming with LDAP as easy as using JDBC. If you're using Spring, I recommend them highly. If you're not, there's value in learning it.

%

link|flag
vote up 4 vote down

LDAP itself is already providing a pretty high level abstraction for directory servers, I haven't seen many libraries that provide a further abstraction on top of that. I have written my own little library to enable my own application to talk to LDAP servers (in my case, also an Active Directory server).

The java.naming.directory package is where the interesting stuff is. Connecting to an LDAP server is really not too hard...

// set properties for our connection and provider
Properties properties = new Properties();
properties.put( Context.INITIAL_CONTEXT_FACTORY, 
  "com.sun.jndi.ldap.LdapCtxFactory" );
properties.put( Context.PROVIDER_URL, "ldap://myserver.somewhere.com:389"; );
properties.put( Context.REFERRAL, "ignore" );

// set properties for authentication
properties.put( Context.SECURITY_PRINCIPAL, "User Name" );
properties.put( Context.SECURITY_CREDENTIALS, "password" );

InitialDirContext context = new InitialDirContext( properties );

Running searches against the directory isn't that much more difficult.

// Create the search controls
SearchControls searchCtls = new SearchControls();

// Specify the search scope
searchCtls.setSearchScope(SearchControls.SUBTREE_SCOPE);

// specify the LDAP search filter, just users
String searchFilter = "(&(objectClass=user)( cn=Joe Someone))";

// Specify the attributes to return
String returnedAtts[]={"memberOf"};
searchCtls.setReturningAttributes(returnedAtts);

NamingEnumeration answer = context.search( "dc=com,dc=somewhere", searchFilter, 
  searchCtls );

From there, authentication is very easy: the last line above will throw a NamingException is the username and password are not valid credentials.

I have used the Acegi Security library to good effect with a couple applications, getting Acegi to work with an LDAP backend is pretty straightforward; this may be the more high level solution you are looking for.

link|flag
vote up 1 vote down

I have used Netscape LDAP SDK for Java in place of JNDI on a couple of occasions (e.g. LDAP Maven Plugin). But that was because I needed to import/export records using LDIF and DSML.

For web applications that need to manage entries in the directory I have used Spring LDAP. This is a layer on top of JNDI. One of my colleagues implemented caching using Spring AOP to improve the performance.

However, I believe the problem is most likely to in the design of your directory and the starting point that you use for your directory searches and look ups. Also make sure you use filters to avoid returning back all the attributes for an object. You are probably only interested in a small subset of what may be available.

You might also want to consider using a higher level framework for your security requirements. I generally use Spring Security for dealing with authorization and access control when developing web applications. However, whenever possible I prefer to do the authentication on the web server. If you are using Apache HTTPD then you can used the mod_ldap module.

link|flag
vote up 0 vote down

Consider NOT using the Java APIs and instead checking out ArisID and its abstraction layer for identity...

link|flag
vote up 0 vote down

Netscapes LDAP API is nice, easy to use, but JNDI should replace it.

What pitfalls did you have with JNDI? You may want to stay with JNDI and just get help on the pitfalls.

Once you have JNDI set up it isn't too hard to use, but the initial setup is a bit of a pain. :)

JNDI is more flexible than the Netscape API. I haven't tried Spring's implementation, but if you are going to use Spring for other parts of an application it would be a good choice to use it.

The LDAP server is where you will find the slowdown, not in the API. OpenLDAP has been too slow for me, when updating, but I had to put over 80k users into it, but Sun's IPlanet worked well. The various APIs won't show a slowdown as they are much faster than updating the database.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.