Hello, we are trying to configuare and initialize event handlers for our use on the project. We have Bonita 7.14.0 and we are using these documentation steps: https://documentation.bonitasoft.com/bonita/2022.1/integration/event-handlers, https://github.com/Bonitasoft-Community/event_handlers_examples, https://community.bonitasoft.com/project/event-handlers-examples.
The handler class has been created, and the deployed jar has been copied to webapps/bonita/WEB-INF/lib/ folder. In my case the xml bean looks like this:
```
<bean id="myEventHandlerExample" class="com.luke.bonita.EventHandlerExample"> </bean> <bean id="eventHandlers" class="org.springframework.beans.factory.config.MapFactoryBean"> <property name="targetMapClass"> <value>java.util.HashMap</value> </property> <property name="sourceMap"> <map> <entry key="PROCESSINSTANCE_CREATED" value-ref="myEventHandlerExample"/> </map> </property> </bean>
```
Then using setup pull we are pulling the configuration and there was no bonita-tenant-sp-custom.xml file pulled and I dont see /platform-conf/current/tenants/ folder. In /platform-conf/current/ i have: platform-engine, platform-init-engine, platform-portal, tenant-template-engine, tenant-template-portal, tenant-template-security-scripts.
I pasted my bonita-tenant-sp-custom.xml to tenant-template-engine and also copied the event hanlder bean bonita-tenant-custom.xml file that i found in the folder. Still I have no logs in tomcat of a working event and it should start on process creation?
ps.
Can I have a project with bonita-client and bonita-server dependency working together?