0 Replies Latest reply on Sep 15, 2008 11:39 AM by tuestone

    Error page not rendered in IE 7

    tuestone

      Hello,

      I am experiencing problems with an error page that is defined in web.xml:

      <error-page>
       <exception-type>java.lang.Exception</exception-type>
       <location>/error.jsp</location>
      </error-page>
      


      When an exception occurs, the page is displayed in Firefox 3 and IE 6 but IE 7 refuses to render the page. Instead, the last page stays in the browser. The request is forwarded to the error page correctly (breakpoint) but it is not rendered.

      Simplified error.jsp:

      <%@ page isErrorPage="true"%>
      <%
       session.invalidate();
      %>
      <html>
      <body>
      Some Text
      </body>
      </html>


      I am using JBoss 4.2.2, JSF 1.2 RI and Richfaces 3.2.1 / 3.2.2.

      Does anybody have an idea? Any help greatly appreciated. Thanks!