How are you deploying the definition? Are you retreiving the process definition 
from the".par" file?

Here is what you can do:

ZipInputStream zipStream = new ZipInputStream(new FileInputStream(new 
File(<location of par file>)));
  | ProcessDefinition processDefinition = 
ProcessDefinition.parseParZipInputStream(zipStream);
  | jbpmContext.deployProcessDefinition(processDefinition);
  | 

The default jbpm web app already has that functionality (look at the 
"monitoring" menu of web app).

Thanks.

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

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

Reply via email to