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]
# 1
you had better to read a jsf tutorial.here a good one : http://www.coreservlets.com/JSF-Tutorial/try the examples provided and you'll be able to quickly migrate to JSF
java_2006a at 2007-7-12 3:32:01 > top of Java-index,Java Essentials,Java Programming...
# 2

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

ycliana at 2007-7-12 3:32:02 > top of Java-index,Java Essentials,Java Programming...
# 3
Hi All,Thanks a lot.prakhyath
prakhyatha at 2007-7-12 3:32:02 > top of Java-index,Java Essentials,Java Programming...