[rules-users] Working in the GWT console

ramram8 ramram858 at gmail.com
Tue Nov 17 07:51:37 EST 2009


Kris I also found the following issue if the USER TASK 1 and USER TASK 2 are
assigned to the same user I can see both tasks and execute them but if for
example Task 1 is assigned to admin and Task 2 is assigned to admin1 after
logging out and logging in as admin1 I cant see that the tasks that are
assigned to him in order to complete the process. Another issue if I have
another scenario a User Task Followed by LOG for example The User task is
executed but the process that is following it which is a LOG in our example
is never reached or executed.

PS. for the LOG process I defined a special handler for it which only
contanins System,out,

public class MyLogHandlerCall implements WorkItemHandler
{

	public void executeWorkItem(WorkItem workItem, WorkItemManager manager)
	{
		try
		{
			System.out.println("RAAAAMMMM TEST");
		}
		catch(Exception e)
		{
			e.printStackTrace();
		}
	 }

	public void abortWorkItem(WorkItem workItem, WorkItemManager manager)
	{
	     System.out.println((new StringBuilder()).append("Aborting work item
").append(workItem).toString());
	     manager.abortWorkItem(workItem.getId());
	}
}


Please advise!!!!!
-- 
View this message in context: http://old.nabble.com/Working-in-the-GWT-console-tp26387553p26389372.html
Sent from the drools - user mailing list archive at Nabble.com.




More information about the rules-users mailing list