forward from one jsf page to another
Hi,
I am sure this question has been asked before somewhere but I am not able to find it.
I want to forward from one jsf page to another like we do in jsp by <jsp:forward page="courseList.faces"/>
I want to do same thing from a jsf page since <jsp:forward> is not working inside <f:view> tag.
Thanks,
Arsalan
# 2
actually I am getting a url string from outside the application. On the basis of input parameters from url, I have to populate one backing bean and then display a page.
I am able to populate the backing bean, now I need to forward to another page where the record is displayed from the bean.
Please let me know if you have any other questions.
# 3
If I am understand you correctly, you have an entry point to your application from a different application. Let's say this is /entry.jsf. When this request is made you populate a backing bean (presumably using #{param.xyz}?). How instead of rendering /entry.jsf you want to render /display.jsf.
So why wouldn't you just start at /display.jsf? I imagine I am missing something.