[JBoss-user] [JBoss jBPM] - Re: how to assign a task with multiple users?

2006-05-25 Thread kukeltje
as pointed out in another thread of this same day, it could be that you need to use a different method to retrieve the pooled actors tasklist. http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3946405 View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3946

[JBoss-user] [JBoss jBPM] - Re: how to assign a task with multiple users?

2006-05-26 Thread kpavan_8
Hi Ronald, i really did not understand what u have said. I can retrieve the tasks from jbpmContext.getTaskMgmtSession().findPooledTaskInstances(group). now say users bert, ernie belong to a group 'testgroup', (there is also a prbm here, how the relation between the users and group is maintained in

[JBoss-user] [JBoss jBPM] - Re: how to assign a task with multiple users?

2006-05-26 Thread MatthiasBraeuer
Hi, IMHO the problem lies with the implementation of the class ExpressionAssignmentHandler's assign() method: | [...] | | // else if the expression evaluated to a user | } else if (entity instanceof User) { | // do direct assignment | assignable.setActorI

[JBoss-user] [JBoss jBPM] - Re: how to assign a task with multiple users?

2006-05-26 Thread kukeltje
"kpavan_8" wrote : Hi Ronald, | i really did not understand what u have said. I can retrieve the tasks | from jbpmContext.getTaskMgmtSession().findPooledTaskInstances(group). | Yes "kpavan_8" wrote : | now say users bert, ernie belong to a group 'testgroup', (there is also a prbm here

[JBoss-user] [JBoss jBPM] - Re: how to assign a task with multiple users?

2006-05-26 Thread kukeltje
"MatthiasBraeuer" wrote : As can be seen a group is not assigned to the pooled actors as an array of the users contained in it, but as an array with only one element, namely the group itself. | Correct, this is as designed "MatthiasBraeuer" wrote : | Thus, the users in that group won't se

[JBoss-user] [JBoss jBPM] - Re: how to assign a task with multiple users?

2006-05-28 Thread kpavan_8
Ronald, I am using jBPM 3.1.1 I dont think the tasks assigned to group are automatically assigned to the individual users in the group, i tried it in the websale example. i could not find the tasks in the UI for the individual users. Mathew, I think I should also do the same thing, write my own a