Page 1 of 1

workflow doubt in mind?

PostPosted:Thu Oct 21, 2010 5:25 am
by wangmj
line:906 in file com.openkm.module.direct.DirectWorkflowModule.java
Code: Select all
			TaskMgmtSession taskMgmtSession = jbpmContext.getTaskMgmtSession();
			Map<String, FormElement> hm = new HashMap<String, FormElement>();
			
			for (FormElement fe : values) {
				[b]hm.put(fe.getName(), fe);[/b]
			}
			
			org.jbpm.taskmgmt.exe.TaskInstance ti = taskMgmtSession.getTaskInstance(taskInstanceId);
			ti.setVariables(hm);
hm.put(fe.getName(), fe);
look the bold style words,I think the jbpm rule engine can't express it,and you?

Re: workflow doubt in mind?

PostPosted:Thu Oct 21, 2010 9:05 am
by pavila
I don't understand. What is the problem?

Re: workflow doubt in mind?

PostPosted:Fri Oct 22, 2010 12:40 am
by wangmj
run the workflow example,you will find the problem.
good luck!