What could be the base for LDAP? If there is not any base given during configuration.
I have to verify/authenticate user from a web based application and I have the java code.
String username = "user";
String password = "password";
String base = "ou=People,dc=objects,dc=com,dc=au";
String dn = "uid=" + username + "," + base;
String ldapURL = "ldap://ldap.example.com:389";
but I need to set up the base (variable) for that, I have asked the other team to tell me the base, they said we have not customized anything on LDAP. What could be the default base for LDAP?