hi i have a jpdl.xml file where i have configured a timer in one transition
<?xml version="1.0" encoding="UTF-8"?>
<process name="TimerBusinessTime" xmlns="http://jbpm.org/4.4/jpdl">
<start g="19,50,48,48">
<transition to="second state" />
</start>
<state name="second state" g="283,46,83,53" >
<transition name="to_guardedWait" to="guardedWait" g="-16,-17" />
</state>
<state name="guardedWait" g="98,46,127,52">
<transition name="go on" to="next step" g="-16,-17" />
<transition name="timeout" to="escalation" g="-43,-16">
<timer duedate="2 minutes" />
</transition>
</state>
<state name="next step" g="118,140,88,52" />
<state name="escalation" g="118,140,88,52" />
</process>
and i have impoted <import resource="jbpm.jobexecutor.cfg.xml" /> tis in jbpm.cfg.xml file...
Now in my test case. i deploy the jpdl.xml file and start it..so it will reach the first state and then i will signal it to the second state where the timer is specified...so it must fire after 5 minutes automatically..but its not happening..i dunno if i have gone wrong somewhere...
Plz guide me
Thanks in advance
Parvathy