[jboss-user] [JBoss jBPM] - Re: process image display highlights wrong end node if task

2007-10-15 Thread ramsub
Actually, If I had specified the wrong transition, it would have gone to the wrong node - but I don't find that happening ! The transition name is correct, and it also goes to the right node - as evidenced by my logs, where I print the name of the last node from my action handler on event

[jboss-user] [JBoss jBPM] - Re: process image display highlights wrong end node if task

2007-10-15 Thread ramsub
Let me explain the business case in more detail - We have a series of such similar (same assignment handler class) task nodes in our process definition - At each task node, the assignment handler talks finds out who the assisgnees are and assisgns them. The assignees may be different at each

[jboss-user] [JBoss jBPM] - process image display highlights wrong end node if task is e

2007-10-13 Thread ramsub
[jbpm 3.1.3, jboss4.0.5 ] I have a wierd problem - with some of my process definitions, the end node that gets highlighted at the end of the process is the wrong node ! This happens when I end my task instance is ended within the assignment handler itself. I need to do such a thing because the

[jboss-user] [JBoss jBPM] - Decision expressions.

2007-09-27 Thread ramsub
Hi, I'm using jbpm 3.1.3, I have a context variable that is a list, and I need to have a decision condition that evaluates by calling the contains() method on this list. I'm trying : decision name=decision1 expression='#{MYLIST.contains(A) ? a : b}' However, this does not seem to work and

[jboss-user] [JBoss jBPM] - Subprocess questions - and unexpected behaviour ?

2007-09-27 Thread ramsub
[jbpm3.1.3] Question : Can a process node have more than one leaving transition ? If so, then how can I choose a transition to leave ? I need to take a transition based on what state the subprocess finished in. I tried writing an action handler on even subprocess-end, and doing