Hi,
I use JNDI API on JRE 1.7 to establish connection to APACHE DS.
I am able to establish SIMPLE authentication to APACHE DS, I am
just trying to get DIGEST-MD5 to work. Here are my enironment:
Hashtable env = new Hashtable();
env.put(Context.INITIAL_CONTEXT_FACTORY, ldapCtxFactory);
if (authMethod != null)
env.put(Context.SECURITY_AUTHENTICATION, authMethod);
if (principal != null)
env.put(Context.SECURITY_PRINCIPAL, principal);
if (credentials != null)
env.put(Context.SECURITY_CREDENTIALS, credentials);
if (referral != null)
env.put(Context.REFERRAL, referral);
if (ldapVer != null)
env.put("java.naming.ldap.version", ldapVer);
env.put("java.naming.security.sasl.realm", "example.com");
Tell me, do I need to configure the example.com realm or is it
configured as a default by APACHE DS?
Thanks,
Ike
From: Emmanuel Lécharny <[email protected]>
To: [email protected],
Date: 08/06/2014 04:28 PM
Subject: Re: SASL DIGEST-MD5 Authentication
Le 06/08/14 22:40, Ike Ikonne a écrit :
> Hi all,
>
> Again, thanks all for your response; so, do I need to make any
> external configuration other than the configuration to the APACHE DS?
> How do I change the default realm to point to my domain realm?
> Do I need to install/setup cyrus-sasl library to make this to work?
No. We depends on the JVM which supports SASL.
What client are you using ?