LDAP

    In order to setup LDAP for the JBoss/Wildfly Application Server distribution, you have to perform the following steps:

    The administratorUserName property should contain the user id of the LDAP user you want to grant administrator authorizations to. You can then use this user to log in to the web application and grant authorizations to additional users.

    HAL Resource Caching

    If you use LDAP as Indentity Provider, you should consider activating caching ofUsers and Groups in the Camunda webapplication. In order to activate this, add the followingconfiguration to the web.xml file of Camunda webapplication(camunda-webapp-jboss-$PLATFORM_VERSION.war/WEB-INF/lib):

    1. <?xml version="1.0" encoding="UTF-8"?>
    2. <web-app version="2.5" xmlns="http://java.sun.com/xml/ns/javaee"
    3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    4. xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
    5. <!-- ... -->
    6. <listener-class>org.camunda.bpm.engine.rest.hal.cache.HalRelationCacheBootstrap</listener-class>
    7. <context-param>
    8. <param-name>org.camunda.bpm.engine.rest.hal.cache.config</param-name>
    9. <param-value>
    10. {
    11. "cacheImplementation": "org.camunda.bpm.engine.rest.hal.cache.DefaultHalResourceCache",
    12. "caches": {
    13. "org.camunda.bpm.engine.rest.hal.user.HalUser": {
    14. "capacity": 100,
    15. },
    16. "capacity": 100,
    17. "secondsToLive": 900
    18. }
    19. }
    20. }
    21. </param-value>
    22. </context-param>
    23. <!-- ... -->
    24. </web-app>