Hi guys,
I implemented a custom incident handler which sends an email if an incident occures means if handleIncident() is called.
I registered that incidentHandler like shown below:
{code}
<property name="customIncidentHandlers"><!-- Custom incident handler which sends emails-->
<list>
<ref bean="emailNotificationIncidentHandler"/>
</list>
</property>
{code}
This works fine unfortunately the org.camunda.bpm.engine.impl.incident.DefaultIncidentHandler is no longer called so no incident is created in database. Even if I configure it as bean and add it to list of customIncidentHandlers it does not work.
So my questions are:
1. Is it not possible to configure more then one customIncidentHandler?
2.How do I have to configure the org.camunda.bpm.engine.impl.incident.DefaultIncidentHandler when I also want to use one customIncidentHandler? I would like to achieve that both incident handlers are called.
Best regards,
Markus