1 Reply Latest reply on Oct 29, 2014 4:22 AM by swiderski.maciej

    How to implement exception handling in jbpm6.1 using jbpm-console?

    hari6025

      Hi Team,

       

      We are using jbpm-console for designing a process , triggering using rest API of jbpm-console.

      We have added some custom node as well in the palette. For this respective nodes added generic handler classes as well. Using those nodes able to trigger the process.

      I have gone through userguide jbpm6.1 Exception Management chapter , in that they are explaining about servicetask along with SignallingTaskHandlerDecorator. We don't have ksession to register handler like below as we are using restAPI to trigger the process.

       

      String eventType = "Error-code";

      SignallingTaskHandlerDecorator signallingTaskWrapper = new SignallingTaskHandlerDecorator(ServiceTaskHandler.class, eventType);

      signallingTaskWrapper.setWorkItemExceptionParameterName(ExceptionService.exceptionParameterName);

      ksession.getWorkItemManager().registerWorkItemHandler("Service Task", signallingTaskWrapper);

       

      Looking for guidance on implementing some generic exception handling mechanism for all the process in the project(Retry the execution of same node 3). Could anyone suggest me best way of implementing it.

       

       

       

      Thanks in Advance,

      Harikumar

       

      Message was edited by: Hari Kumar