cancel
Showing results for 
Search instead for 
Did you mean: 

integerating with LDAP:: last step

sojasoja
Champ in-the-making
Champ in-the-making
hi,
i want to log in to activiti explorer, using LDAP user and group provider, i have implemented the needed classes, but i don't know how to use them , i changed the activiti-cfg file in some places, but it just login using the DB and the old users , or it just say that there is some problem with spring and many other things…
what is exactly the next step after implementing the classes? which configurations must be changed?
1 REPLY 1

trademak
Star Contributor
Star Contributor
Hi,

You have to configure them in a customSessionFactories property on ProcessEngineConfiguration bean like this:


  <property name="customSessionFactories">
    <list>
      <bean class="test.UserManagerFactory" />
      <bean class="test.GroupManagerFactory" />
    </list>
  </property>

You can also find a fully implemented example in my Activiti in Action book, chapter 10.

Best regards,