Hi,
I have a question regarding using the camunda extended markup for the BPMN model.
At the moment I’m trying to specify camunda:candidateGroups=“group1,group2” in the userTask elemenet as per sample below:
<bpmn2:userTask id="UserTask_05vjg9m" name="test" camunda:candidateGroups="group1,group2">
<bpmn2:incoming>SequenceFlow_1nrjfjn</bpmn2:incoming>
<bpmn2:outgoing>SequenceFlow_1nmx5hn</bpmn2:outgoing>
<bpmn2:standardLoopCharacteristics />
<bpmn2:userTask>
However when i try to deploy this bpmn file using the rest api integration I get the following error:
{
“type”: “ProcessEngineException”,
“message”: “couldn’t parse ‘process.bpmn’: The prefix “camunda” for attribute “camunda:candidateGroups” associated with an element type “userTask” is not bound.”
}
I guess I’m missing something for camunda engine to recognise the extended markup attributes?
Is it possible to pass the group id in the camunda:candidateGroups attribute or just group name?
Thank you for your help