Keith,
I had understood that the problem has been resolved in RC1 with redirect.
In itemlist example in PR5:
Code:
<action-state id="addItem">
<action bean="addItemAction"/>
<transition on="*" to="displayItemlist"/>
</action-state>
The successive request to first generate an error of transaction and come however mapping on the view without to execute the business logic.
This does not work in more complex cases like:
Code:
<action-state id="addItem">
<action bean="addItemAction"/>
<transition on="success" to="displayItemlist"/>
<transition on="error" to="displayError"/>
<transition on="txError" to="?"/>
</action-state>
Where it is not possible to establish the result of the first request.
I believed that in RC1 (itemlist) the trancaction it has been replaced with redirect:
Code:
<bean id="flowExecutor" class="org.springframework.webflow.executor.FlowExecutorImpl">
<constructor-arg ref="flowRegistry"/>
<property name="alwaysRedirectOnPause" value="true"/>
</bean>
The requests come refused (redirect) until do not arrive one coming from from the last view that restores the flow in active state
I pray you to correct itself where mistake