BTW: Here is my pageflow definition: <?xml version="1.0" encoding="UTF-8"?> | <pageflow-definition xmlns="http://jboss.com/products/seam/pageflow" | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | xsi:schemaLocation="http://jboss.com/products/seam/pageflow pageflow-1.2.xsd" | name="register"> | | <start-page name="register" view-id="/public/register.xhtml"> | <transition name="next" to="personRegistered"> | <action expression="#{register.register}" /> | </transition> | </start-page> | | <decision name="personRegistered" | expression="#{register.registered}"> | <transition name="true" to="login" /> | <transition name="false" to="confirm"> | <action expression="#{register.sendCode}" /> | </transition> | </decision> | | <page name="confirm" view-id="/public/confirm.xhtml"> | <redirect /> | <transition name="next" to="isCodeCorrect" /> | </page> | | <decision name="isCodeCorrect" | expression="#{register.codeCorrect}"> | <transition name="true" to="invite"> | <action expression="#{register.complete}" /> | </transition> | <transition name="false" to="confirm" /> | </decision> | | <page name="invite" view-id="/public/secure/invite.xhtml"> | <redirect /> | <end-conversation /> | </page> | | <page name="login" view-id="/public/login.xhtml"> | <redirect /> | <end-conversation /> | </page> | | </pageflow-definition> |
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4057345#4057345 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4057345 _______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
