Important Notice: Our web hosting provider recently started charging us for additional visits, which was unexpected. In response, we're seeking donations. Depending on the situation, we may explore different monetization options for our Community and Expert Contributors. It's crucial to provide more returns for their expertise and offer more Expert Validated Answers or AI Validated Answers. Learn more about our hosting issue here.

How do I provision userProxy objects in ADAM?

Adam objects
0
Posted

How do I provision userProxy objects in ADAM?

0

The trick to this is the objectSID attribute, as it must be set in the provisioning extension. ObjectSID cannot be set during EAF because the value cannot change on the ADAM object once it has been provisioned. 1. Flow ObjectSID from AD into a binary metaverse attribute 2. Set ObjectSID on the ADAM object in the provisioning code Here’s some sample provisioning code: Public Sub Provision(ByVal mventry As MVEntry) Implements IMVSynchronization.Provision If mventry.ObjectType.ToLower = “person” and mventry(“EmployeeID).IsPresent Then If mventry(“objectSid”).IsPresent And mventry.ConnectedMAs(“ADAMMA”).Connectors.Count = 0 Then Dim newCS As CSEntry newCS = mventry.ConnectedMAs(“ADAMMA”).Connectors.StartNewConnector(“userproxy”) newCS.DN = mventry.ConnectedMAs(“ADAMMA”).CreateDN(“CN=” & mventry(“employeeID”).StringValue).Concat(“DC=toronto,DC=ca”) newCS(“objectSid”).BinaryValue = mventry(“objectSid”).BinaryValue newCS.CommitNewConnector() End If End If End Sub Be sure to read the ADAM revi

Related Questions

What is your question?

*Sadly, we had to bring back ads too. Hopefully more targeted.

Experts123