12-07-2011 11:49 AM
12-09-2011 09:41 AM
12-10-2011 10:03 AM
12-10-2011 01:36 PM
12-10-2011 07:18 PM
12-11-2011 05:37 AM
12-11-2011 12:16 PM
Execution e = runtimeService.createExecutionQuery()
.processInstanceId(process.getId())
.activityId("receivetask1")
.singleResult();
runtimeService.signal(e.getId());
Now, this uses the "process.getId()" and the name/id of the "receivetask1" in order to signal the process. However, both execution paths are in the same process and have the same "process.getId()". They are also waiting at the same task, "receivetask1". Thus, I do not see any way of distinguishing between the two client here. How would I specify which one I am trying to signal? 12-12-2011 05:40 PM
or do I have to somehow create completely new processes for each client so that the process ID will be different?
12-13-2011 03:12 AM
12-13-2011 03:58 AM
Tags
Find what you came for
We want to make your experience in Hyland Connect as valuable as possible, so we put together some helpful links.