You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@directory.apache.org by "Steven Nguyen (JIRA)" <ji...@apache.org> on 2015/09/03 09:02:45 UTC

[jira] [Created] (DIRAPI-247) Could not connect to LDAP server over SSL

Steven Nguyen created DIRAPI-247:
------------------------------------

             Summary: Could not connect to LDAP server over SSL
                 Key: DIRAPI-247
                 URL: https://issues.apache.org/jira/browse/DIRAPI-247
             Project: Directory Client API
          Issue Type: Bug
    Affects Versions: 1.0.0-M31
            Reporter: Steven Nguyen
            Priority: Minor


Hi Team,

I need to connect to AD server through SSL using LDAP API. I configured SSL on AD server and I could connect to it using Directory Studio.
However, when I create a LdapNetworkConnection and tried to open connection to AD server through SSL, I got "Unable to connect" error. No more stack trace message.
My code is simple as below:

LdapConnectionConfig connConfig = new LdapConnectionConfig();
connConfig.setLdapHost("<AD_host_name>");
connConfig.setLdapPort(636);
connConfig.setUseSsl(true);
connConfig.setUseTls(true);
connConfig.setSslProtocol("SSL");
connConfig.setTimeout(10 * 1000);
LdapNetworkConnection conn = new LdapNetworkConnection(connConfig);
// error after calling connect() method
conn.connect();

Could you please check if I'm missing something?

Thanks and Best Regards,

Steven Nguyen



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)