I have a servlet filter that does some authentication and if it fails it is
supposed to forward to a simple error page displaying a message (the page
has no jsf component). Though I have this working using struts, I am
starting to have a hard time to make it work. I am making the following
call:
servletContext.getRequestDispatcher("error.jsp").forward(request,response);
Is there anything extra I need to make this work? is this problem caused by
JSF? (I have the same thing working in struts with no problems).