A related bug to this is a nasty stack overflow error if an error page that you 
define is not found.  It's pretty easy to reproduce, just add this to your 
web.xml:

<error-page>
        <error-code>404</error-code>
        <location>/some-nonexistant-file.jsp</location>
</error-page>

Then try to access a non-existant file.  Tomcat will go into an infinite loop 
until the stack overflows.

-Dave

On Wed, May 30, 2001 at 04:23:19PM -0500, Marc Saegesser wrote:
> This was broken in 3.2.1 and unfortunately is still broken in 3.2.2 due to
> the commit problem I mentioned earlier.  Since this isn't a regression
> failure and there is a work-around we'll log it as a bug and fix it in
> 3.2.3.
> 
> > -----Original Message-----
> > From: Marc Saegesser [mailto:[EMAIL PROTECTED]]
> >
> > Bloody hell.
> >
> > This bug was fixed a couple months ago and then got whacked by a
> > late commit
> > to StaticInterceptor.java.  I take partial responsibility because
> > I reviewed
> > that commit and missed the problem.  I'll try to get this taken
> > care of this
> > evening.

Reply via email to