1 Reply Latest reply on Aug 7, 2006 7:53 AM by kukeltje

    new token instance

    pmahesh

      Hi,

      I want to create a new token instance and i don't want this newly created token to be associated with the root token. And the newly created token is set to the process instance. i feel tjis is the only way we can do it. is there any other alternative? well also when i tried to signal the process with the newly created topken and save some data in the tables it is throwing errors i don't understand the problem can ny body give me the solution

      here is the sample code snippets


      Token rootToken = processInstance.getRootToken();

      Token duplicateToken = new Token();

      duplicateToken.setNode(rootToken.getNode());
      duplicateToken.setProcessInstance(processInstance);

      duplicateToken.signal();

      jbpmContext.close();