Hi Remid, Let me give you my example for reference. In the example, it is actual 2 processes. And you should deploy them one by one.
| <?xml version="1.0" encoding="UTF-8"?> | <process-definition xmlns="urn:jbpm.org:jpdl-3.1" name="SubProcess"> | <swimlane name="Initiator"></swimlane> | <start-state name="Start SubProcess"> | <task swimlane="Initiator"></task> | <transition to="InvokeTimeout"></transition> | </start-state> | <process-state name="InvokeTimeout"> | <sub-process name="InnerProcess"></sub-process> | <transition to="End"></transition> | </process-state> | <end-state name="End"></end-state> | </process-definition> | | <?xml version="1.0" encoding="UTF-8"?> | | <process-definition xmlns="urn:jbpm.org:jpdl-3.1" name="InnerProcess"> | <swimlane name="Roy"> | <assignment expression="user(Roy)"></assignment> | </swimlane> | <start-state name="Start InnerProcess"> | <task swimlane="Roy"></task> | <transition to="Done"></transition> | </start-state> | <task-node name="Done"> | <task swimlane="Roy"></task> | <transition to="End"></transition> | </task-node> | <end-state name="End"></end-state> | </process-definition> | Roy View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3955783#3955783 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3955783 Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ JBoss-user mailing list JBoss-user@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/jboss-user