hi all, here i have attached a BPMN.jpg file which shows my process diagram..in this diagram my ACTIVITI engine is not able to execute "task 3"..it doesnt show any error but, it just dont execute it. Can any one answer this please
I've looked at the code you e-mailed and what I see is that you implement the ActivityBehavior interface instead of the JavaDelegation interface. You can look for the differences in the userguide here http://www.activiti.org/userguide/index.html#bpmnJavaServiceTask
What happens now in your process is that service task 1 and 2 never complete, so task 3 is never reached. When you implement the JavaDelegation interface for all service tasks your process should run well.