certificate « ldap « Java Enterprise Q&A





1. How can I search for a user based on a Certificate in LDAP?    stackoverflow.com

How do I search for a specific user object in LDAP that has an associated x509 certificate? Do I need to encode it in a certain way? It looks like the ...

2. LDAP & SSL Certificates    coderanch.com

4. No trusted certificate found (91);Cannot connect to the LDAP server    forums.oracle.com

JSSESocketFactory fact = null; private LDAPConnection conn = null; String keystore = "C:\\j2sdk1.4.2_15\\jre\\lib\\security cacerts"; System.setProperty("javax.net.ssl.trustStore",keystore); fact = new JSSESocketFactory(null); conn = new LDAPConnection(fact); int ldapVersion = 3;//LDAPConnection.LDAP_V3; //defualt values of LDAP settings private int ldapPort = 636; LDAPAttributeSet ldapAtrbSet; String ldapHost; String loginDN; String loginDN_Password; ............................................ And it is gicving me error : Error: netscape.ldap.LDAPException: SSL connection to 192.168.10.8:636, sun.security.validator.ValidatorException: No ...