If at this point you are not sure of exactly what LDAP is, I recommend this post which provides an excellent definition with examples. (In a nutshell it helps to think of an LDAP server as a specialised database).
Installing an LDAP Server
I'm running on a MBP. After looking around for a while I found that the easiest LDAP Server to install was ApacheDirectory which you can download from here. (To install and start the server should take less than 5 minutes)
Once it's installed it automatically starts the daemon. You can then run the server with this command.
sudo launchctl start org.apache.directory.server
For further installation instructions see here.
(If you need to uninstall you will find the application installed at /usr/local/apacheds-2.0.0-M20 just delete that directory and it will be gone)
LDAP Client
You will want to view the contents of your LDAP Server. The easiest LDAP client to install is Apache Directory Studio which can be downloaded from here.
Once it is downloaded you need to create a connection to the server - the instructions for which are contained here.
When connected your Apache Directory Studio should look something like this:
Now to access LDAP from a Java program. The best way to show you how to do this is through an example program. The program will perform the following tasks:
- Create an new LDAP object
- View an LDAP object
- Add a new attribute to an LDAP object
- Modify an attribute on an LDAP object
- Remove an attribute on an LDAP object
- Delete an LDAP object
- Search for all LDAP objects in a specific domain
Note: This class cleans up after itself i.e. It leaves the LDAP Server in the state in which it was found. If you want to see the various tasks in action just run one of the tasks and take a look at the LDAP Object through the LDAP Client. Don't forget you can modify the object in the LDAP Client and test in that way.
The code is below and should be self explanatory.