hi,
I am trying to forward a task through DFS(ITaskManagementService- forward method) the code is executing without any errror.
The issue is that task is not reflecting in the inbox of the next activity performer to whom it is assigned. It is still assigned to the current activity performer
When i use claim method its working fine i.e it's getting moved from dormant state to acquired state.but, when i use forward operation its not reflecting
in the inbox of the next activity performer to whom it is assigned .
here is my code snipnet which i used in my application.
************************************************************************************
public void task() throws BpmServiceException, ServiceException {
my_service = ServiceFactory.getInstance().getRemoteService(ITaskManagementService.class, serviceContext,"bpm", "http://xxxxxxx:9080/services");
taskSet = my_service.query("dmi_workitem.r_object_id,dmi_queue_item.r_object_id,dmi_queue_item.name", "dmi_workitem.r_runtime_state=0","dmi_queue_item.name",15,1);
taskList= taskSet.getRow();
taskId = taskList.get(i).getId();
my_service.claim(taskId);//whn i do this it's running fine
my_service.forward(taskId, null);// this is wht not reflecting in webtop
}
***********************************************************************************
thanks in advance...