java.lang.NullPointerException
  |     at org.jbpm.gd.jpdl.notation.JpdlNode.getDestinationNode(Unknown Source)
  | 

looks like there is an incorrect transition somewhere in the process, pointing 
to a node that cannot be resolved.

I would suspect the following:

        <decision name="do manual?">
  |             <transition to="end" name="No"></transition>
  |             <transition to="super-state1/select users" 
name="Yes"></transition>
  |     </decision>

and change it to:

        <decision name="do manual?">
  |             <transition to="end" name="No"></transition>
  |             <transition to="manual annotation configuration/select users" 
name="Yes"></transition>
  |     </decision>

How did you end up with this corrupted process in the first place?


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4184860#4184860

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4184860
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to