Issue When attempting to update Active Directory (AD) group membership via Policy Xpress (PX) in Identity Manager, the operation fails with one or more of the following errors:
LDAP: error code 70 - Unable to set Group Membership Attribute: memberOf Reason: Group-Membership modification errorFailed to execute AddToRelationshipEvent. ERROR MESSAGE: JIAMOperationException:javax.naming.NamingException: [LDAP: error code 80 - :ETA_E_0008Release : 14.X
CA Identity Suite (Virtual Appliance)
CA Identity Manager (Standalone Appliance)
Policy Xpress (PX) / Provisioning Server
The failure occurs because the AD Group Distinguished Name (DN) is provided in a standard LDAP format (e.g., using eTADSGroupName and eTADSOrgUnitName). The Identity Manager memberOf provisioning attribute requires a specific JSON-wrapped format that maps these attributes to internal identifiers like EndPoint and Namespace. Without this conversion, the Provisioning Server cannot correctly identify the target group object.
To resolve this issue, the AD group DN must be converted into the accepted JSON structure before being assigned via Policy Xpress.The most common problem with the PxPolicy is the declaration of the group itself. Most times the DN value is configured incorrectly.
Please see the below guide on how to create your DN value appropriately.
Use an LDAP browser (such as JXplorer) to connect to the Provisioning Server and copy the raw DN of the target AD group.
eTADSGroupName=MyTestGroup,eTADSOrgUnitName=Org1,eTADSDirectoryName=MyAD,eTNamespaceName=ActiveDirectory,dc=im,dc=etaApply the following transformation rules to the raw DN:
eT and trailing Name from all attributes (e.g., eTADSOrgUnitName becomes ADSOrgUnit).ADSDirectory to EndPoint.ADSNamespace to Namespace.dc=im,dc=eta with Domain=im,Server=Server.Example Result: ADSGroup=MyTestGroup,ADSOrgUnit=Org1,EndPoint=MyAD,Namespace=ActiveDirectory,Domain=im,Server=Server
Implement these steps within a Policy Xpress policy to automate group assignments:
{"memberOf" : "Converted_DN_String"}memberOf attribute.