Hi
I would like to create a kind of cutsom K2 Worklist
Unfortunately, I didnt manged to get all the information that I would need to do it using the The Workflow reporting service Object.
I have also try to get the Client Event URL using the K2 API
workflowServer.CreateConnection();
workflowServer.Connection.Open(connectionString.ToString());
foreach (WorklistItem worklistItem in workflowServer.GetWorklistItems("", "", "", "", "", "", ""))
{
Console.WriteLine("Process Name: " + worklistItem.ProcName.ToString());
Console.WriteLine("Start Date: " + worklistItem.StartDate.ToString());
Console.WriteLine("ProcInstID: " + worklistItem.ProcInstID.ToString());
Console.WriteLine("ActInstDestID: " + worklistItem.ActInstDestID.ToString());
}
It doesnt seem to be possible to retrieve the URL from the WorklistItem Object
Please, could you help me to get the the Client event URL for a specific destination user and for a specific workflow active instance ?
Thanks a lot for your help
Regards,
Amazigh