Help

Controls

PermLinkWikiLink

Built with Seam

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.

Forum: Seam Users Forum ListTopic List
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" />
...

2 Replies:
27. Jul 2008, 16:13 CET | Link

No.

 

Read about how to report a bug.

28. Jul 2008, 17:05 CET | Link

Arf, it's shameful. It seams that Spring WebFlow has exactly what I want, I'm going to see that.