Kindly suggest the setting to change authentication setting from Ldap to Ladaps(over SSL)
I have edited jaas-standard.cfg file
BonitaAuthentication-1 {
com.sun.security.auth.module.LdapLoginModule REQUIRED
userProvider="ldap://********:389/DC=**,DC=***"
java.naming.security.principal="User****"
java.naming.security.credentials="Password***"
java.naming.security.authentication="DIGEST-MD5"
authIdentity="{USERNAME}"
userFilter="(&(objectClass=user)(samAccountName={USERNAME})(!(userAccountControl:1.2.840.113556.1.4.803:=18)))"
useSSL=false
debug=false;
to
userProvider="ldaps://********:636/DC=**,DC=***"
but it couldn't work , kindly suggest the what other setting needed to be done to get secure authentication from active Directory(Windows)
Thanks