Switching between JSF and JSP
Hi All,
How can I switch between JSF environment and normal JSPs
Here is the scenario:
On particular action of Page 1, System need to redirect to Page 2 after performing some actions in Page 2, system has to redirect to pAGE 3 .
can any one help me out...
Thanks in advance...
Prakhyath
[330 byte] By [
prakhyatha] at [2007-11-27 2:55:21]

You will need to define specific <navigation-case/> in the the <navigation-rule/> tags in your faces configuration.
<navigation-rule>
<from-view-id>/from.jsp</from-view-id>
<navigation-case>
<from-outcome>success</from-outcome>
<to-view-id>/to.jsp</to-view-id>
</navigation-case>
</navigation-rule>
Check this out:
* http://www.jsftutorials.net/jsf-navigation-by-examples.html
If you have further JSF questions, you should be asking it here:
* http://forum.java.sun.com/forum.jspa?forumID=427
yc