Hi ,
In my processDefinition the taskNode before End-State is not ending....and so the process
is not ending...I mean if I have 2 TaskNodes the one before end-state is not ending....If
I have 1 taskNode that one is also not ending
Here is the processDefinition:
<?xml version="1.0" encoding="UTF-8" ?>
| <process-definition xmlns="urn:jbpm.org:jpdl-3.2"
name="ManagerAllocation">
| <swimlane name="Agent">
| <assignment
class="com.expeditor.workallocation.ManagerAssignmentHandler">
| <domainTable>AgentTrans</domainTable>
| </assignment>
| </swimlane>
| <swimlane name="QcAgent">
| <assignment
class="com.expeditor.workallocation.QCAssignmentHandler">
| <domainTable>AgentTrans</domainTable>
| <qcDomainTable>QcTrans</qcDomainTable>
| </assignment>
| </swimlane>
| <start-state name="Start">
| <transition name="To Process Maintanence Request" to="Process
Maintanence Request" />
| </start-state>
| <task-node name="Process Maintanence Request">
| <task name="Process Maintanence Request" swimlane="Agent">
| </task>
| <transition name="To Perform QC" to="Perform QC"
></transition>
| </task-node>
| <task-node name="Perform QC">
| <task name="Perform QC" swimlane="QcAgent" >
| </task>
| <transition name="To End Process" to="End
Process"></transition>
| </task-node>
| <end-state name="End Process" />
| </process-definition>
|
Any Help Please....
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4109719#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...