Reputation: 1513
I have a java web application.I want to create an embedded LDAP server, when web application run, I will insert some record to LDAP, and there is another web application will access this LDAP to get information. is it possible?
Upvotes: 3
Views: 6869
Reputation: 11132
Yes. OpenDS can be embedded. If you don't need a full-fledged directory server, for example for testing, the UnboundID LDAP SDK provides an in-memory LDAP server. See this article for more information and an example.
Upvotes: 4