Java Dynamic Management Kit 4.2 Tutorial

2. Extend Your Java Runtime Libraries

For each of your SDK/JSSE installations, copy the three jar files (jsse.jar, jcert.jar, and jnet.jar) of the JSSE reference implementation into the extensions directory of your Java runtime environment.

For example, on the Solaris platform you would type:


$ cp JSSEhome/lib/jsse.jar JAVAhome/jre/lib/ext/
$ cp JSSEhome/lib/jcert.jar JAVAhome/jre/lib/ext/
$ cp JSSEhome/lib/jnet.jar JAVAhome/jre/lib/ext/

Or you could add these jar files to your environment's classpath, as follows (for the Korn shell):


$ export CLASSPATH=${CLASSPATH}:JSSEhome/lib/jsse.jar:\ 
JSSEhome/lib/jcert.jar:JSSEhome/lib/jnet.jar