How to I build Tomcat with SSL?

2001-08-13 Thread Peter Markowsky

I've looked at the documentation, downloaded the classes and xerces 1.4.1.
But am now faced with the actual how do I rebuild Tomcat. I'm very new at
this.
Thanks for the help,
Peter M.




Re: How to I build Tomcat with SSL?

2001-08-13 Thread Eoin Woods

 Date: Mon, 13 Aug 2001 09:04:50 -0400
 From: Peter Markowsky [EMAIL PROTECTED]
 Subject: How to I build Tomcat with SSL?
 I've looked at the documentation, downloaded the classes and xerces 1.4.1.
 But am now faced with the actual how do I rebuild Tomcat. I'm very new at
 this.
I've just had to do this myself.

The first thing is that if you just want SSL support then, with Tomcat 3.2.3
at least, you don't seem to need to rebuild it.   Just put the JSSE JAR
files in $TOMCAT_HOME/lib and configure the SSL HttpConnector in server.xml
(there is an example there commented out).

If you *do* need to rebuild it (for other reasons) the you'll find an
explanation in the README file supplied with jakarta-tomcat-3.2.2.tar.gz.
Basically, you need to download Ant, the servletapi package, Xerces, JAXP
and JSSE and put them in a directory structure like:

rootdir
jakarta-tomcat
jakarta-servletapi
jakarta-ant
jaxp-1.0.1

You also need to put xerces.jar and the JSSE JARs in your CLASSPATH before
doing the build.

Eoin.