I have a jbpm jdpl like this

  | <task-node name="game1">
  |             <event type="node-enter">
  |                     <action expression="#{game1.start}"/>
  |             </event>
  |       <task name="game1" >
  |          <assignment actor-id="#{actor.id}"/>
  |       </task>
  |       <transition name="" to="game2"></transition>
  |    </task-node>
  | 

I need to start a task automaticaly on node-enter calling a method game1.start. 
 I try by annotate this method with @StartTask but i get an exception 


  | no value for request parameter: taskId

Can I pass taskId to the method, or i need something else in the start method.

Help!!! :-)

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

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

Reply via email to