LDAP

    In order to set up LDAP for the IBM WebSphere distribution, you have to perform the following steps:

    Adjust the Process Engine Configuration

    Edit the file bpm-platform.xml located inside the Camunda BPM enterprise archive at camunda-ibm-websphere-ear-$VERSION.ear/camunda-ibm-websphere-service.jar/META-INF/ and add the LDAP Identity Provider Plugin and the .

    See our user guide for complete documentation on the LDAP Identity Provider Plugin and the .

    HAL Resource Caching

    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>
    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. "secondsToLive": 900
    16. "org.camunda.bpm.engine.rest.hal.group.HalGroup": {
    17. "capacity": 100,
    18. "secondsToLive": 900
    19. }
    20. }
    21. }
    22. </param-value>
    23. </context-param>
    24. <!-- ... -->