Attribute is readonly during MapAttributesForExport
i have the below code for an Advanced Attribute Flow. I am trying to export the attributes to AD. When I doa sync it complains that the attribute mail attribute is readonly, so I commented it out and it complains the next is readonly. Can you guys give me some ideas on this things to check out void IMASynchronization.MapAttributesForExport (string FlowRuleName, MVEntry mventry, CSEntry csentry) { switch (FlowRuleName) { case "nameRule": //Could change at any moment csentry["mail"].Value = mventry["cn"].Value + "@domain.edu"; csentry["userPrincipalName"].Value = mventry["cn"].Value + "@domain.org"; csentry["proxyAddresses"].Values.Add("SMTP:" + mventry["cn"].Value + "@domain.edu"); csentry["proxyAddresses"].Values.Add("sip:" + mventry["cn"].Value + "@domain.org"); csentry["msRTCSIP-PrimaryUserAddress"].Value = "sip:" + mventry["cn"].Value + "@domain.org"; break; }
June 27th, 2012 4:41pm

You need to have a different rule name and case statement for each export flow. The source side of an export rule can have many metaverse attributes, but it can only flow data into one connector space attribute. Chris
Free Windows Admin Tool Kit Click here and download it now
June 27th, 2012 5:16pm

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics