Environment: jbpm 3.2 + mysql 5 + jboss as 4.0.5 + jdk 1.5.x
This is happening after the the action of this process been run, when I execute
TaskInstanceEndCommand, and untill now this happens only on this process.
|
| StartWorkOnTaskCommand cmd1 = new StartWorkOnTaskCommand(taskInstanceId, false);
| TaskInstanceEndCommand cmd2 = new TaskInstanceEndCommand();
|
| cmd2.setVariables(map);
| cmd2.setTaskInstanceId(taskInstanceId);
|
| execute (....)
|
| <process-definition
| xmlns="" name="notificacao">
| <swimlane name="default">
| <assignment expression="user(grover)"></assignment>
| </swimlane>
| <node name="envia email">
| <event type="node-enter">
| <action name="sendmail"
class="com.pep.actions.SendMail"></action>
| </event>
| <transition name=""
to="confinuar"></transition>
| </node>
| <task-node name="confinuar">
| <transition name="t end" to="end"></transition>
| <transition name="repetir" to="decidir o
destinatario"></transition>
| </task-node>
| <end-state name="end"></end-state>
| <task-node name="decidir o destinatario">
| <task name="inserir destinatario" swimlane="default">
| <controller>
| <variable name="destinatario"
access="read,write,required"></variable>
| <variable name="tipo"
access="read,write,required"></variable>
| </controller>
| </task>
| <transition name="" to="envia
email"></transition>
| </task-node>
| <start-state name="start">
| <transition name="" to="decidir o
destinatario"></transition>
| </start-state>
| </process-definition>
|
the action com.pep.actions.SendMail, simply outputs hello world, until this part
everything works, after this it gives the error that i mentioned.
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4063396#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...