I am using Jbpm3.2 version. I have deployed a webapplication which contains a simple
processDefinition .And written the java code in a servlet to deploy and navigate through
process.I have embedded jBPM engine with the web application and Deployed in JBoss 4.0.4.
In the servlet i have written below code
| ProcessDefinition
processDefinition=ProcessDefinition.parseXmlResource("SampleProcess/processdefinition.xml");
| ProcessInstance processInstance=processDefinition.createProcessInstance();
| JbpmConfiguration
jbpmConf=JbpmConfiguration.parseResource("hibernate.cfg");
| JbpmContext jbpmContext=jbpmConf.createJbpmContext();
| String nodeName=processInstance.getRootToken().getNode().getName();
| System.out.println("nodeName-->"+nodeName);
| try{
| jbpmContext.deployProcessDefinition(processDefinition);
| System.out.println("ProcessDefinition Deployed");
| // some code to navigate thro process i.e signal and all......
| }
| catch(Exception e){e.printStackTrace();}
| finally{
| jbpmContext.close();
| }
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4078570#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...