[jboss-user] [JBoss jBPM] - Re: workaround for StackOverflow exception

insanely.freak do-not-reply at jboss.com
Mon Jan 12 09:35:47 EST 2009


>From one of the post in forum I got to know that there should be a wait state when we try to implement such loop cases, which in my case is there.
I have also tried with two Task nodes but still i get same result following is the  processdefinition.xml file for aboce case:

  | <process-definition xmlns="urn:jbpm.org:jpdl-3.1" name="process_name">
  | 
  |    <start-state name="start">
  |         <transition to="decision" ></transition>
  |     </start-state>
  |  	  	
  |  	 <task-node name="decision" create-tasks="true">
  |      	<task name="decision_task" description="decision">     					    	 		     		
  | 		</task>
  | 		<transition to="to_end" name="to_end"/>   						    		
  | 		<transition to="taskNode" name="taskNode"/>					
  | 	</task-node>	
  | 	
  |     <task-node name="taskNode" create-tasks="true">
  |      	<task name="approve_task" description="hula">
  |      		<assignment class="com.workflow.CostCenterAssignmentHandler">
  |      		</assignment>	     			    	 		     		
  | 		</task>   						    		
  | 		<transition to="decision" name="decision"/>						
  | 	</task-node>
  | 	
  |     <end-state name="to_end"></end-state>
  | </process-definition>

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

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4201020



More information about the jboss-user mailing list