Active Directory LDAP group membership

Hi,
I’m triyng to integrate Active Directory LDAP authentication in Camunda 7.10.
I managed to get login work and to have group list BUT Camunda do not map correctly users in group (i.e. groups result empty)
here is part of my config:

      <property name="baseDn">DC=sit,DC=local</property>

      <property name="userSearchBase">OU=Comune di Sesto Fiorentino</property>
      <property name="userSearchFilter">(objectclass=person)</property>

      <property name="userIdAttribute">samAccountName</property>
      <property name="userFirstnameAttribute">givenName</property>
      <property name="userLastnameAttribute">sn</property>
      <property name="userEmailAttribute">mail</property>
      <property name="groupSearchBase">OU=Comune di Sesto Fiorentino</property>
      <property name="groupSearchFilter">(objectclass=group)</property>
      <property name="groupIdAttribute">samAccountName</property>
      <property name="groupNameAttribute">samAccountName</property>

      <property name="groupMemberAttribute">member</property>
	  <property name="groupMemberAttribute">managedBy</property>
      <property name="sortControlSupported">false</property>

I suppese there is something wrong in member But I cannot understand what.

Thank you
Nicola

Solved!!
2 lines mapping

  <property name="groupMemberAttribute">member</property>
	  <property name="groupMemberAttribute">managedBy</property>

I’d read that file dozens of times and I did not noticed sorry!