km wen [http://community.jboss.org/people/kmwen] created the discussion
"Re: how to resume process" To view the discussion, visit: http://community.jboss.org/message/588465#588465 -------------------------------------------------------------- hi, vadim thx for anwser because i want to use external exception handling to handle the exception, i create two process engine. i changed the definition of test fragment as following: *private ProcessDefinition createSimpleFragmentDefinitionStart() {* * ProcessDefinitionBuilder builder2 = ProcessDefinitionBuilder.startProcess("Second Definition");* * * * builder2.startActivity(new StartActivity()).initial().transition("A1").endActivity();* * builder2.startActivity("A1", new Display("A1")).transition("A").endActivity();* * builder2.startActivity("A", new MyTest()).transition("B1").endActivity();* * builder2.startActivity("B1", new Display("B1")).endActivity();* * * * return builder2.endProcess();* *}* ** *ClientProcessInstance getInstance(){* * ProcessDefinition pd = createSimpleFragmentDefinitionStart();* * ClientProcessInstance pi = ((ProcessDefinitionImpl) pd).startProcessInstance();* * * * return pi;* *}* and then i start this test process: *public static void main(String[] args) throws NullPointerException{* * TestExceptionHandling te = new TestExceptionHandling1();* * * * te.createSimpleFragmentDefinitionStart();* * te.getInstance();* *}* i try to resume the test process in exception handling process, and back to the activity A, because activity A1 is complete. I think i should get the processInstance of test process and use executionService.signalProcessById() to resume, but it doesn't work. -------------------------------------------------------------- Reply to this message by going to Community [http://community.jboss.org/message/588465#588465] Start a new discussion in jBPM at Community [http://community.jboss.org/choose-container!input.jspa?contentType=1&containerType=14&container=2034]
_______________________________________________ jboss-user mailing list [email protected] https://lists.jboss.org/mailman/listinfo/jboss-user
