Customize Tomcat error pages

2002-06-11 Thread Markus Kirsten
How do I configure standard error pages like 403, 404 etc. for Tomcat? I've gone through the Tomcat documentation breifly but can't find anything about it. Markus -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional commands, e-mail: mailto:[EMAIL PROTECTED]

Re: Customize Tomcat error pages

2002-06-11 Thread Tim Funk
Its part of the Servlet Specification and not unique to Tomcat. Place this snippet into web.xml to redirect page not found errors to /errorpage_404.jsp. error-page error-code404/error-code location/errorpage_404.jsp/location /error-page -Tim Markus Kirsten wrote: How do I configure