Hi everybody.
I Have a flow : [Start] -> [First_HumanTask] -> Split -> [Second_HumanTask]
or [End].
Someday i had asked about why my flow was stopped (See [droolsflow ] Flow is
Stoped) . Kris Verlaenem, told to me to use
https://hudson.jboss.org/hudson/job/drools/lastSuccessfulBuild/artifact/t....
I Created on my Split node this contraint:
*processInstance : WorkflowProcessInstance()
ticketBeanVar : TicketBean( id == ( processInstance.getVariable("ticketId")
) )
eval(ticketBeanVar.isApproved() == true)*
This works for the first instance (I finished the [First_HumanTask] , and he
was going to SecondHumanTask), but for the second instance, after i complete
the [First_HumanTask] , the flow stayed stopped (only for the second
instance). ( If i Change, first the second instance and then first instance
occurred the same problem (The first instance stayed stopped) )
What's wrong?
Thanks