Skip to Main Content

Security Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Change proxyAddresses attribute Exchange OIM

657925Sep 15 2008 — edited Sep 26 2008
Hello everyone,

I need to modify the attribute of proxyAddresses Exchange to amend the email addresses supply, as they must be different to those created when a resource supplies Exchange.

I am grateful for the help of everyone.

Greetings,
Leandro

Comments

661621
Do you want to change the linking between OIM Exchange connector and attribute proxy addresses? If you have the Exchange 9.1 connector that would be easy using attribute mapping. Could you specify the connector version.
661915
Hashtable ht = new Hashtable();
Vector msv = new Vector();
Vector msv1 = new Vector();
msv.add("SMTP:xxxx@gmail.com");
msv.add("smtp:zzzzzz@yahoo.co.in");
msv.add("X400:c=US;a= ;p=First Organizati;o=Exchange;s=gupta;g=vineet");
msv1.add("{26491CFC-9E50-4857-861B-0CB8DF22B5D7}");
ht.put("proxyAddresses", msv);
ht.put("msExchPoliciesExcluded", msv1);

and call Exchange apis passing this hashtable
1 - 2
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Oct 24 2008
Added on Sep 15 2008
2 comments
668 views