Mar 17
Deploy a process via java program not using Eclipse interface is very easy. You only need to write this lines.
JbpmContext jbpmContext = jbpmConfiguration.createJbpmContext();
ProcessDefinition processDefinition = ProcessDefinition.parseXmlResource("org/xxx/definitions/yyy/processdefinition.xml");
jbpmContext.deployProcessDefinition(processDefinition);
jbpmContext.close();
It is very useful when you have to write a setup program for your application.

April 6th, 2008 at 2:35 am
I have org.hibernate.exception.SQLGrammarException
can u help me please?