You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by bu...@apache.org on 2002/05/31 00:23:03 UTC

DO NOT REPLY [Bug 9531] New: - 1.0 RC2 - Exception in CoyoteResponseFacade.reset() when hitting error-page

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: tomcat-dev@jakarta.apache.org
        ReportedBy: seth@oculan.com


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:   <ma...@jakarta.apache.org>
For additional commands, e-mail: <ma...@jakarta.apache.org>