Configure LDAP failover with Sun identity manager 7.0

Hi AllAnybody has configured LDAP failover with sun identity manager.I have LDAP failover with Sun Access manager but in sun identity manager I am not getting how to configure LDAP failover .Pls help us.Thanks Saini
[257 byte] By [rahulsainia] at [2007-11-27 3:08:46]
# 1

What do you mean by LDAP failover?

If you are talking about LDAP as a target resource, you essentially configure IM to talk to a load balancer ./ directory proxy server which is in front of the ldaps amongst which you want failover. That way, any one ldap server coming down is transparent to IM. Backend ldaps will naturally have replication running on them, etc.

Ankush

http://www.iamcg.net

ankushkapoora at 2007-7-12 3:57:09 > top of Java-index,Web & Directory Servers,Directory Servers...
# 2

You can use the native JNDI failover feature, which is based on multiple values in java.naming.provider.url

See http://java.sun.com/products/jndi/tutorial/ldap/misc/url.html#MULTI

The tricky part is to make IDM build such list, this can be achieved by extending the standard LDAPResourceAdapter and overloading LDAPResourceAdapterBase.getContextEnv (see REF kit).

Another way is to rely on the fact that IDM will simply concat the baseContext to the base URL => just add you failover url after the baseContext (use space, not carriage return as separator) :

<baseContext> ldap://<failoverHost>:<failoverPort>/<baseContext>

mguessana at 2007-7-12 3:57:09 > top of Java-index,Web & Directory Servers,Directory Servers...
# 3
Thanks buddy.
rahulsainia at 2007-7-12 3:57:09 > top of Java-index,Web & Directory Servers,Directory Servers...