0 Replies Latest reply on Oct 14, 2005 4:03 PM by mangeshd

    How to store & retrieve Process Definition & Instance

    mangeshd

      Hi,
      I have created a variable associated with a process instance in the ActionHandler.
      context.getProcessInstance().getContextInstance().createVariable("status", "PENDING");

      I saved the process instance using "jbpmSession.getGraphSession().saveProcessInstance(processInstance);"

      Now I want to retrieve the value of this variable in another method. So how do I load the previous Process Definition i.e. how do I save the Process Definition or instance with a unique ID?
      Need some urgent help on this please.

      I tried the follg. code but it doesnt work :-
      ProcessDefinition processDefinition = jbpmSession.getGraphSession().findLatestProcessDefinition("LeaveApp");
      ProcessInstance processInstance = new ProcessInstance(processDefinition);
      processInstance.getContextInstance().getVariable("status");
      This returns a NULL value