[jboss-user] [JBoss Seam] - Re: How to propagate the execution for a Node ?

tom_goring do-not-reply at jboss.com
Wed Feb 6 04:44:08 EST 2008


Hi,

Is it not just a case of changing:


  | 	<node name="publish_node">
  | 		<action expression="#{publishManager.publish}"/>
  | 		<transition to="input_data" name="to_input_data"/>
  | 	</node>
  | 

to


  | 	<node name="publish_node">
  | 		<transition to="input_data">
  | 			<action expression="#{publishManager.publish}"/>
  | 		</transition>
  | 	</node>
  | 


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

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



More information about the jboss-user mailing list