"dleerob" wrote : Lets say we do take into account all the issues when updating 
a Process Definition. How do we actually update the Process Definition? 
Normally when deploying, it creates a completely new version, and doesn't 
update an existing one. Any ideas?
You would have to 'edit' the process definition xml and re-deploy.

There is no reason why that can't be done programmatically.

Consider:

  | ProcessDefinition processDefinition =  
ProcessDefinition.parseXmlResource("processdefinition.xml");
  | // Change the process definition in memory? 
  | // e.g. processDefinition.addNode() etc.
  | jbpmContext.deployProcessDefinition(processDefinition);


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

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

Reply via email to