2 Replies Latest reply on Apr 1, 2009 6:17 AM by kukeltje

    Problem with Roles JBPM

    konstt2000

      Hi,

      I've two users: - Admin1 with role "ADMIN" and actorid "Admin1" and Admin2 with role "ADMIN" and actorid "Admin2"

      I've the next definition process:

      <start-state name="start">
       <transition to="estado1"></transition>
       </start-state>
      
       <task-node name="estado1">
       <task name="estado1" description="estado1">
       <assignment pooled-actors="ADMIN"/>
       </task>
       <transition to="estado2" />
       </task-node>
      <end-state name="done"/>


      When I call to @CreateProcess it appears in the pooledTaskInstanceList of both users. But when it is called to @StartTask the ACTORID it is fixed and only it appears in the list taskInstanceList of the user who has begun the task.

      If both users belong to the same role, there is no way of which they could see that each of the users are executing tasks?


      Thanks and sorry for my english.