After 2 days of messing around with TC 4.1.12 on cygwin, I realized that the catalina.sh is broken. It does not convert the $CATALINE_TMPDIR environment-variable to a cygwin-path. This lead to these javax.servlet.ServletException: Exception processing JAR at resource path /WEB-INF/lib/<some jar> exception, which lead me into the complete wrong direction :-)
Here's a patch for that (against the 4.1.12 RELEASE) --- catalina_orig.sh 2002-09-23 11:23:00.000000000 +0200 +++ catalina.sh 2002-09-27 20:38:36.000000000 +0200 @@ -101,6 +101,7 @@ CATALINA_HOME=`cygpath --path --windows "$CATALINA_HOME"` CATALINA_BASE=`cygpath --path --windows "$CATALINA_BASE"` CLASSPATH=`cygpath --path --windows "$CLASSPATH"` + CATALINA_TMPDIR=`cygpath --path --windows "$CATALINA_TMPDIR"` JSSE_HOME=`cygpath --path --windows "$JSSE_HOME"` fi I hope I did it the right way. Peter -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>