You can find the full source code for this website in the Seam package in the directory /examples/wiki. It is licensed under the LGPL.
| Online: | 11 Members of 4089 |
| Forum: Seam Users |
24. Jul 2008, 15:33 CET | Link |
Is there a way to have an inner pageflow with 2 or more end-state, and when ending this inner flow, to redirect the different endings to different pages in the parent pageflow ?
I'm looking for a way to do something like this :
parentFlow.jpdl.xml :
... <process-state name="node"> <sub-process name="innerFlow"/> <transition name="ok" to="okPage"/> <transition name="nok" to="nokPage"/> </process-state> ...
and innerFlow.jpdl.xml :
<start-state name="start" view-id="blabla.jsp" > <transition to="beginProcess"/> </process-state> ... <end-state name="ok" /> <end-state name="nok" /> ...
No.
Read about how to report a bug.
Arf, it's shameful. It seams that Spring WebFlow has exactly what I want, I'm going to see that.