event handler

Event Handler startup

Hello, we are trying to configuare and initialize event handlers for our use on the project.

Event Handler startup

Hello, we are trying to configuare and initialize event handlers for our use on the project.

What can and what can not be called from the execute() of an Event Handler?

Hi,

When we create an Event Handler, what are the limitations of the business logic that will be triggered by the execute() method?

Event Handler Example in Bonita Studio SP

Hello,

I followed the example on the bonita documentation about creating an event handler (c.f. documentation )
The only thing I did differently is the configuration of the server, I used the setup.bat (pull and push) to register my event handler (push the bonita-tenant-sp-custom.xml). Then I restart the server via the Studio.

The thing is that nothing appear in the logs as shown in the example.

I am using the default h2 database, with a 7.6.3 bonita SP version.

Regards,

Is it possible to write to a table from inside an Event Handler class?

How do I write to a table from inside an Event Handler class? I need to make an insert from an event handler.

For example:
```
package com.company.event;

import java.util.UUID;

Notifications