Hi All,
I have this strange issue - I have a
servlet that needs to do a redirect to a
JSF page after checking some credentials are properly entered in the application.
If I do something like response.sendRedirect("/faces/success.jsp"); - i get 404 NOT found.
If I do something like response.sendRedirect(request.getContextPath() + "/faces/success.jsp"); - i get a BLANK PAGE!
(and by the way I have tried encodeRedirect as well - same thing.
I'm using Weblogic 10.3/JDeveloper 11G/JSP/JSF 1.2
Thanks in advance!