Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm performing url redirects between primefaces mobile pages (pm:page). For instance from login.jsf to /secure/myPage.jsf, both pm:pages. After successful authentication the user should be redirect to myPage.jsf. The login is triggered like this:

       <pm:commandButton value="login" update="messages"                         
                         actionListener="#{loginbean.doLogin}" >
             <f:param name="targetUrlParam" value="defaultTarget" />
       </pm:commandButton>

and the redirect within the method:

public void doLogin(ActionEvent e) throws IOException {

    FacesContext context = FacesContext.getCurrentInstance();
    ExternalContext ec = context.getExternalContext();
    try {
        HttpServletRequest req = (HttpServletRequest) ec.getRequest();

        Authentication authentication = SecurityContextHolder.
                                        getContext().getAuthentication();

    ... // Authentication stuff with Spring Security

        try {
            HttpSession session = req.getSession(false);
            String cp = ec.getRequestContextPath();
            String redirectUrl = cp;

    ... //performing some filtering depending on Roles and target-urls
            }

            String encodedURL = ec.encodeResourceURL(redirectUrl);
            ((HttpServletResponse) ec.getResponse()).sendRedirect(encodedURL);

        } catch (AuthenticationException ae) {
            UtilBean.addErrorMessage("bad_credential");
        }

Unfortunately the redirect doesn't occur! It might have to do with the lifecycle of primefaces mobile 3.0M3 because everything works fine with normal JSF pages.

Any suggestions? Thanks

share|improve this question

1 Answer

up vote 0 down vote accepted

This is not entirely the right way to send a redirect in JSF. I'm not sure why it works in "normal" JSF (that should fail over there as well!). You basically need to call FacesContext#responseComplete() after the redirect to instruct JSF that it should not navigate to the default outcome. However, much better is to perform the redirect using ExternalContext#redirect() as it will do that implicitly.

So in your case, replace

((HttpServletResponse) ec.getResponse()).sendRedirect(encodedURL);

by

ec.redirect(encodedURL);
share|improve this answer
Thanks Balus for the quick answer! It works! Just try it... – codyLine Oct 12 '11 at 15:13
You're welcome. Since you're new here, please don't forget to mark the answer accepted whenever it helped (most) in solving the problem. See also meta.stackoverflow.com/questions/5234/…. Do the same for the questions you asked previously, whenever applicable: stackoverflow.com/users/920485/codyline – BalusC Oct 12 '11 at 15:15

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.