Active Sync new records with clear text password

Hi all,

I have some SQL tables that will be used from provision IDM. These tables store user records created by some external applications. The passwords in these records are stored in clear text.

Now, i alredy configured Active Sync on these resources to synchronize record changes (and new records) with IDM. The problem is that if i have new records on these resources i can only active sync them to IDM if the password is set to a constant value (or rule) in the metaview configuration (we are using IDM 7.0), although metaview gives the possibility to set the Identity Manager attribute password.password to a resource attribute.

I made something similar in metaview with the IDM attribute waveset.organization. This attribute sets the organization the user will belong to. In this case, the waveset.organization attribute is set by a value stored in the resource record. This configuration is working, i.e, depending on the value stored in the resource record the user will be created in one organization or another.

So, the problem is:

I have some authoritative resources from which new records need to be synchronized into IDM. The user records store the password in clear text. How can i sync these records along with the password stored on them into IDM ?

Anyone ever had this problem ?

Thanks in advance for you help.

Best Regards,

Rui Monteiro

[1417 byte] By [rmonteiro] at [2007-11-26 11:57:50]
# 1

You could do this:

<Field name="password.password">

<Default>

<s>SomeValue</s>

</Default>

<Disable>

<neq>

<ref>activeSync.diffAction</ref>

<s>create</s>

</neq>

</Disable>

</Field>

or this:

<Field name="password.password">

<Expansion>

<ref>activeSync.password</ref>

</Expansion>

<Disable>

<neq>

<ref>activeSync.diffAction</ref>

<s>create</s>

</neq>

</Disable>

</Field>

This will set password.password to the attribute value coming in from the activeSync feed. Just set the <ref> to be equal to the attribute you are using in the feed for password. Make sure this is in your schema.

mfortune99 at 2007-7-7 12:18:26 > top of Java-index,Web & Directory Servers,Directory Servers...
# 2

Hi mfortune99,

thanks for you reply,

Sorry the question, but where should i put this code ? should i put it on some form (which ?), or should i make a rule with it and set the password with this rule through metaview ?

thanks for your help

Best regards,

Rui Monteiro

Message was edited by:

rmonteiro

rmonteiro at 2007-7-7 12:18:26 > top of Java-index,Web & Directory Servers,Directory Servers...