How to fetch users from Active Directory using LDAPS in java. The AD server is with our client. I'm able to fetch using LDAP protocol, but for LDAPS what additional information do I require from client?
3 Answers
We put up a sample of connecting to LDAPS with JNDI.
We also have some general information on Using LDAP with AD. -jim
Comments
The code is quite similar to retrieval of objects from LDAP.
You need to remember that the port of LDAPS is usually not 389
(but that's the easy part) and handle certificate issues, as explained in the following blog.