Re: Exception when tying to display a 404 error page.

2010-12-22 Thread greenleaf
Ok I stumbled upon this post facing the same problem, with 404 error jsp page not loading via the servlet filter for ATG. I can hit the page directly though but not via the 404 redirect. The solution is to add this to your web.xml: PageFilter *.jsp REQUEST FOR

Re: Exception when tying to display a 404 error page.

2007-11-07 Thread Josh Vickery
Why not redirect to the struts 2 action you want? This is the jsp I use for error pages in tomcat: <%response.sendRedirect("error.do");%> where error.do points to a struts 2 action Josh On Nov 7, 2007 5:15 PM, matihost <[EMAIL PROTECTED]> wrote: > > This error page is defined in my web.xml: >

Re: Exception when tying to display a 404 error page.

2007-11-07 Thread matihost
> This error page is defined in my web.xml: > > >404 >/pages/errors/page404.jsp > You are using Tomcat web container. There is one issue regarding element, but i assume there are the same reason for any url used in web.xml. https://issues.apache.org/struts/browse/WW-2025 In other w