Yes, it is possible.
When you create a new ProcessInstance object the process not begin inmediately..
You can put your variables and then signal it to start.
Something like this:
| ProcessInstance pi=JbpmContext.newProcessInstance("processname");
| pi.getContextInstance().setVariable("var1", new Integer(1));
| pi.signal(); -> this will start your process..
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4185370#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...