Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I urgent need help with connecting my app via SSL to a server for ldap operations.

This Bean:

@Default
@ManagedBean
@ApplicationScoped
public class ActiveDirectoryHandler implements AuthenticationHandler {


private static Hashtable env;

static {

    env = new Hashtable();
    env.put(Context.SECURITY_AUTHENTICATION,"simple");
env.put(Context.SECURITY_PROTOCOL,"ssl");
    env.put(Context.PROVIDER_URL,"ldap://xxx.yyy.zzz:636");
    env.put(Context.INITIAL_CONTEXT_FACTORY,"com.sun.jndi.ldap.LdapCtxFactory");

    String keystore = "D:\\keystore";
System.setProperty("javax.net.ssl.trustStore",keystore);
    System.setProperty("javax.net.ssl.keyStorePassword", "changeit");
    System.setProperty("javax.net.ssl.trustStorePassword", "changeit");

}

@Override
public boolean authenticate(String username, String password) {

    env.put(Context.SECURITY_PRINCIPAL, username);
    env.put(Context.SECURITY_CREDENTIALS, password);
    try {
        String keystore = System.getProperty("javax.net.ssl.trustStore");
        DirContext ctx = new InitialLdapContext(env, null);
        ctx.hashCode();
    } catch (NamingException ex) {
        Logger.getLogger(ActiveDirectoryHandler.class.getName()).log(Level.SEVERE,     null, ex);
    }
    return false;
}

throws exception

javax.naming.CommunicationException: simple bind failed: dchxxx.yyy.zzz:636 [Root exception is javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target]

On the other hand, same code works great, when run as a console app. I already found out about importing CA certs in a keystore and so on. Obviously I did right, because the console app worked.

Please help!

Cheers, Joern

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.