What ports are required for the ADAM MA?
5.2 How do I provision userProxy objects in ADAM? 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() E