Hello
I'm sorry if this is a repeated question but I could not find a good answer.
I'm trying to call a bean method through the action node in the page flow. This method is never called.
What should I first look at to see if something is wrong?
The project I'm working on is huge so I'll post what I think is important and if you need more please tell me.
<pageflow-definition
xmlns="http://jboss.com/products/seam/pageflow"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
name="pageflowX">
<start-page name="startPage" view-id="urlA.xhtml" >
<redirect/>
<transition name="transitionZ" to="callZ" >
<action expression="#{bean.method}"></action>
</transition>
</start-page>
<page name="callZ" view-id="/private/urlB.xhtml">
<redirect />
</page>
<end-state name="theEnd"/>
</pageflow-definition>
The bean has already been started and also the conversation started with the annotation @Begin(join = true, pageflow = "pageflowX")