DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG 
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://nagoya.apache.org/bugzilla/show_bug.cgi?id=9531>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND 
INSERTED IN THE BUG DATABASE.

http://nagoya.apache.org/bugzilla/show_bug.cgi?id=9531

1.0 RC2 - Exception in CoyoteResponseFacade.reset() when hitting error-page

           Summary: 1.0 RC2 - Exception in CoyoteResponseFacade.reset() when
                    hitting error-page
           Product: Tomcat 4
           Version: 4.0.3 Final
          Platform: PC
        OS/Version: Linux
            Status: NEW
          Severity: Normal
          Priority: Other
         Component: Connector:Coyote HTTP/1.1
        AssignedTo: [EMAIL PROTECTED]
        ReportedBy: [EMAIL PROTECTED]


Coyote Connector 1.0 RC2

I'm getting an IllegalStateException when a servlet of mine throws an exception
that should forward me to an error page. The exception is on line 251 of
CoyoteResponseFacade.java:

248               public void reset() {
249           
250                   if (isCommitted())
251                       throw new IllegalStateException
252                           (/*sm.getString("responseBase.reset.ise")*/);
253 remm  1.1 
254                   response.reset();
255           
256               }

Here's the portion of the web.xml for my webapp that adds the error-page:

<error-page>
  <exception-type>my.package.web.SessionTimeoutException</exception-type>
  <location>/errors/sessiontimeout.jsp</location>
</error-page>

I'll attach a stack trace as a separate text file.

--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to