0 Replies Latest reply on Feb 27, 2006 11:52 AM by mats_n

    Fork not leaving all transitions

    mats_n

      Hi,
      I'm using JBPM3.1 and I've setup a simple process like this:

      <process-definition name="process" encoding="ISO-8859-1">

      <start-state name="New process">

      </start-state>

      <!-- start fork -->




























      <task-node name="group1">



      </task-node>

      <task-node name="group2">



      </task-node>

      <task-node name="group3">



      </task-node>

      <task-node name="group4">



      </task-node>

      I would have thought that when I created a new instance I would automatically get 8 new tasks when I did instance.signal().
      What happens is that I get 2 new tasks:
      task1 and task2.

      Doesn't the fork create a token for each transition?

      /Mats