Hi,

might it be possible that the decission node is the issue?
I faced a similar problem (with the current jbpm 3.2 snapshot from CVS) with a 
node looking like this:

  |    <decision name="Mitreisende vorhanden?">
  |      <transition name="ja" to="Weitere Mitreisende angeben"></transition>
  |             <condition 
expression="#{contextInstance.variables['isAccompanied'] == true}" />
  |       </transition>
  |       <transition name="nein" to="Ende"></transition>
  |    </decision>
  | 
Transition 2 ("nein") was never taken. I changed it to:

  |    <decision name="Mitreisende vorhanden?">
  |       <transition name="nein" to="Ende"></transition>
  |       <transition name="ja" to="Weitere Mitreisende angeben">
  |             <condition 
expression="#{contextInstance.variables['isAccompanied'] == true}" />
  |       </transition>
  |    </decision>
  | 
Now everything is working as expected. In my opinion both solutions should have 
the same result because the transition without condition should always be true..


Rgds,
Patrick

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3950324#3950324

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3950324


_______________________________________________
JBoss-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to