JSF Redirection Problem
i used the following code to redirect but sometime, it did not succeed.
what's wrong the code?
FacesContext context = FacesContext.getCurrentInstance();
HttpServletResponse response = (HttpServletResponse) context
.getExternalContext().getResponse();
response.sendRedirect(url);
is there any other way to do redirection in JSF?
thanks
terence

