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

Why is this redirect not working in my managed bean?

HttpServletRequest objHttpServletRequest = (HttpServletRequest) FacesContext.getCurrentInstance().getExternalContext().getRequest();
        FacesContext.getCurrentInstance().getExternalContext().redirect(objHttpServletRequest.getRequestURI() + "?abc=" + 1 + "&def=" + 2);

I think the problem is caused because of &. If i send just parameter(removing &), it works fine. Thanks in advance :)

share|improve this question
1  
try replacing & with & – oedo May 24 '10 at 15:43
Great! works fine :). Actually with h:commandButton it works just fine with & but i am using Primefaces, and with this components & is must – TCM May 24 '10 at 16:01
@oedo: repost it as an answer then :) Actually, I didn't expect this solution to work and this is in fact not PrimeFaces specific but JSF implementation specific. @Nitesh: do you in the new request receive the both parameters? – BalusC May 24 '10 at 16:16
@balusc, thanks! i wasn't sure it was going to work, but hey, i'm lucky today! :) – oedo May 24 '10 at 16:27
Hi Balusc, yep, i am receiving both the parameters. Primefaces is really non-standard, but since for my college i started using it for my project, i then didn't think of dumping it. I am thinking of moving to Richfaces but it doesn't support xhtml yet fully. Actually when i use & (with primefaces p:commandButton), the actionListener is fired but no redirect is done(not even any error in Server log) – TCM May 24 '10 at 16:29

1 Answer

up vote 4 down vote accepted

Try replacing & with &.

share|improve this answer

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.