RE: Security Manager Problems

2001-01-18 Thread Ed Gomolka
Thanks for the tip. I put it into the bug database. > -Original Message- > From: Neil Weller [mailto:[EMAIL PROTECTED]] > Sent: Thursday, January 18, 2001 3:50 AM > To: [EMAIL PROTECTED] > Subject: RE: Security Manager Problems > > > Thanks very much Ed, it sol

RE: Security Manager Problems

2001-01-18 Thread Neil Weller
t: RE: Security Manager Problems I had this problem. There's a bug in tomcat.sh. Find the following lines in tomcat.sh: if [ "$1" = "-security" ] ; then echo Starting with a SecurityManager Then add a "shift" command, as follows: if [ "$1"

RE: Security Manager Problems

2001-01-17 Thread Ed Gomolka
I had this problem. There's a bug in tomcat.sh. Find the following lines in tomcat.sh: if [ "$1" = "-security" ] ; then echo Starting with a SecurityManager Then add a "shift" command, as follows: if [ "$1" = "-security" ] ; then shift echo Starting with a SecurityManager If so