Hello:
Given the following BPMN:
<userTask id="usertask2" name="Approver Task" activiti:candidateUsers="${assignee}" activiti:formKey="/vacationRequest/create"></userTask>
And following value for ${assignee}
"fozzie, peter, kermit"
Activiti treats the value of ${assignee} as a single user, rather than a comma delimited string of three users.
If however I use the following BPMN, the candidate assignments are made to the three users:
<userTask id="usertask2" name="Approver Task" activiti:candidateUsers="peter, fozzie, kermit" activiti:formKey="/vacationRequest/create">
Any thoughts on what I might be doing wrong?
David Woodbury