When I use a dynamic transition target like
Code:
<transition on="back" to="#{myFlowAction.breadcrumbBack(myFlowBean)}"/>
STS web flow validator reports an error like:
Element transition references a non-exiting state "#{..."
If I use
Code:
<transition on="back" to="${myFlowAction.breadcrumbBack(myFlowBean)}"/>
the STS validator stops reporting that error, but I run in an exception:
Cannot find state with id '${myFlowAction.breadcrumbBack(myFlowBean)}'
Can we switch the EL? (and if so - to what?) Or can we reconfigure the STS SWF validator (this should be the way I suppose)?

Thank you for any suggestion.

Regards.