[jboss-user] [JBoss jBPM] - Re: NPE in GPD

mputz do-not-reply at jboss.com
Mon Oct 27 10:25:47 EDT 2008


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



More information about the jboss-user mailing list