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?
Asked
Active
Viewed 6,721 times
3
-
1possible duplicate of [What is a good embeddable Java LDAP server?](http://stackoverflow.com/questions/337756/what-is-a-good-embeddable-java-ldap-server) – Stefan Gehrig Sep 01 '11 at 13:10
-
1That's correct. but none of them got my answer – Xilang Sep 15 '11 at 03:04
1 Answers
4
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.

Nightfirecat
- 11,432
- 6
- 35
- 51

Terry Gardner
- 10,957
- 2
- 28
- 38
-
Although OpenDS can be embedded, but seems it store data in file system. I have try UnboundID, it's a solution, but it's designed for testing, is it powerful enough to be in product environment? – Xilang Sep 03 '11 at 05:20
-
2