remove stack-trace from public web

2005-03-31 Thread Andreas Andersson
Hi! Is there anyway to make tomcat not print the stack trace when jsp fails? -- Andreas Andersson IT Dept. Travelstart Nordic [EMAIL PROTECTED] http://www.travelstart.se - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: remove stack-trace from public web

2005-03-31 Thread Viorel Dragomir
/location /error-page Viorel Dragomir . .. --- - Original Message - From: Andreas Andersson To: Tomcat Users List Sent: Thursday, March 31, 2005 13:22 Subject: remove stack-trace from public web Hi! Is there anyway

Re: remove stack-trace from public web

2005-03-31 Thread Antony Paul
You can use an error page to display when an exception occurs. This can be configured in web.xml. for eg. error-page exception-typejava.lang.Exception/exception-type location/internalError.html/location /error-page it can be used with HTTP error status also. The following displays