Name | Modified | Size | Downloads / Week |
---|---|---|---|
Parent folder | |||
README.txt | 2013-12-25 | 980 Bytes | |
LdapAddressBookSource20.zip | 2013-12-25 | 242.9 kB | |
Totals: 2 Items | 243.9 kB | 0 |
This folder contains the Java source code for the Ldap Address Book application. The program requires JDOM V2.0.5, which can be downloaded from http://www.jdom.org/. The jdom-2.0.5.jar file must be included in the class path when compiling and running this code. The code can be built into an executable JAR file with a command of the following form: jar cmvf LdapAddressBook.mf LdapAddressBook.jar *.class config images docs The jdom-2.0.5.jar file must be deployed in the same directory as the LdapAddressBook.jar file. For ease of deployment JDOM can be included in a single executable JAR file with the program code, with the following steps: 1) Extract the contents of jdom.jar; 2) Modify the manifest file LdapAddressBook.mf to remove the line Class-Path: jdom-2.0.5.jar; 3) Create the executable JAR file with a command of form: jar cmvf LdapAddressBook.mf LdapAddressBook.jar *.class config images docs org