LDAP

    In order to set up LDAP for the Oracle WebLogic 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-oracle-weblogic-ear-$PLATFORM_VERSION.ear/camunda-oracle-weblogic-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. </listener>
    8. <context-param>
    9. <param-name>org.camunda.bpm.engine.rest.hal.cache.config</param-name>
    10. <param-value>
    11. {
    12. "cacheImplementation": "org.camunda.bpm.engine.rest.hal.cache.DefaultHalResourceCache",
    13. "caches": {
    14. "org.camunda.bpm.engine.rest.hal.user.HalUser": {
    15. "capacity": 100,
    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. <!-- ... -->