1 Reply Latest reply on Jun 24, 2011 7:42 AM by vata2999

    Capture JBPM process starter actor

    pragiya
      Hi all;
         I am using JBPM 3.2 with Seam2.2.
         I have my process definition file and in my <start-state> node I have a <task> node.
      <process-definition  xmlns=""  name="simple">
           <swimlane name="swim1">
           </swimlane>
           <start-state name="start-state1">
               <task name="startTask" swimlane="swim1">
               </task>
               <transition to="task-node1"></transition>
               <event type="node-leave">
                   <action name="startNodeAction"
                        class=" com.sample.action.StartNodeEntryAction">
               </action>
               </event>
           </start-state>
              ............."

      I am using the Seam's @CreateProcess annotation to start the process. What I want to do here is to capture the actorId who started the process and assign it to the swimlane "swim1".

        In JBPM I have heard that we need to call the following method after creating the process to do this.
         processInstance.getTaskMgmtInstance().createStartTaskInstance();

        But in Seam I cant do this because I am using the annotation to start the process. Is there a way to do this in Seam?