Hi,
Using Subscription edition 6.2.2 I am trying to configure LDAP authentication for Bonitasoft application using documentation in below link
http://documentation.bonitasoft.com/active-directoryldap-authentication
My AD server doesn’t allow anonymous access and hence I tried giving below settings in my jaas.cfg file
BonitaAuthentication-1 {
com.sun.security.auth.module.LdapLoginModule REQUIRED
userProvider=“ldap://HOSTNAME”
userFilter=“(&(|(samAccountName={USERNAME})(userPrincipalName={USERNAME})(cn={USERNAME}))(objectClass=user))”
java.naming.security.principal=“ADMINUSER”
java.naming.security.credentials=“ADMINPASSWORD”
debug=true
useSSL=false;
};
But even with above configuration my authentication always fails and Bonitasoft is unable to validate credentials from AD. Is there a way I can pass the DN & password details while connecting to AD.