2 Replies Latest reply on Aug 23, 2005 6:12 AM by alkero

    Timer is not created

    camunda

      I have the following task-node. If jBPM enters this state, no timer is created (I looked in the JBPM_TIMER and there is nor row!). What can be the problem here?

       <task-node name="state.WaitForGoods">
       <task swimlane="ccs">
       <timer name="NeededGoodsWatchdog" duedate="10 business minutes" repeat="10 business minutes">
       <action class="com.camunda.ccs.process.orderprocessing.OrderActions$NeededGoodsWatchdog"/>
       </timer>
       </task>
       <transition name="transition.cancelOrder" to="state.end">
       <action class="com.camunda.ccs.process.orderprocessing.OrderActions$CancelOrder"/>
       </transition>
       <transition name="transition.goodsReceived" to="state.decideGoodsInStock">
       </transition>
       <transition name="transition.breakDeliveryDate" to="state.Delayed">
       </transition>
       </task-node>


      By the way: We use mySQL 4.1

      Thanks
      BERND