LDAP Browser/Editor 2.8.1 Release Notes

January 30th, 2001

What's New in Version 2.8.1

The LDAP Browser/Editor 2.8.1 is a maintenance release. It contains a number of bug fixes and various improvements described below. It also contains a couple of new features. For a complete list of changes see the changes.txt file included with the distribution.

New Features/Improvements:

  1. The Browser has better integration with the SSL protocol. The Browser is now able to automatically detect the missing root CA certificate of the server and prompt the user to trust the missing certificate. However, the user is still responsible for downloading and installing the SSL libraries. For more details on how to install the SSL libraries please see faq.
  2. Added an "append base DN" checkbox in the connect window for the user DN.
  3. The DNs from the directory tree can now be pasted or dropped onto the attribute table. This will cause the DN (or the url) of the source entry to be added as a value to the destination attribute. This can be useful for adding users to groups or creating v3 referrals.
  4. When run as an unsigned applet the Browser is now able to use the copy-and-paste functionality. However, this uses an internal clipboard that cannot be shared with other instances of the Browser or other programs.
Bug Fixes:
  1. Move operation would delete the source entry (and not restore it) even if the move failed (e.g. target entry was incorrect)
  2. LDIF export incorrectly exported attributes with a new line character in their values.
  3. System clipboard was sometimes not accessible.
  4. Creating a new entry from a template would not work if the template specified the same attribute twice (e.g. with different cases)
Other Notes:

If running the Browser with JVM 1.3 you might encounter some problems with the JNDI library. JVM 1.3 includes an older version of the JNDI library then the version that is distributed with the Browser. 1.3 will load the older version instead of the Browser version. To change this you need to modify the lbe scripts in the following way:

On Windows (lbe.bat):

Replace the following line:
    set CMD="%JAVA_HOME%\bin\java" -cp %COMMON%;%EXEC%
with the following:
    set CMD="%JAVA_HOME%\bin\java" -Xbootclasspath/p:%COMMON% -cp %EXEC%
On Unix (lbe.sh)
 
Replace the following line:
    CMD="${JAVA_HOME}/bin/java -cp ${COMMON}:${EXEC}"
with the following:
    CMD="${JAVA_HOME}/bin/java -Xbootclasspath/p:${COMMON} -cp ${EXEC}"