3 Replies Latest reply on Sep 22, 2005 3:41 AM by hannes

    Action class can't be invoked

    vaibhav_contact

       

      <process-definition name='work'>
       <start-state>
       <transition to='phase one' />
       </start-state>
       <state name='phase one'>
       <transition to='phase two' />
       <action name='look' com.ss.s.Action.weWrite'/>
       </state>
       <state name='phase two'>
       <transition to='phase three' />
       </state>
       <state name='phase three'>
       <transition to='end' />
       </state>
       <end-state name='end' />
       </process-definition>

      I am deploying the process from servlet ... the processdefinition gets deployed but the action class weWrite is not getting invoked please help.