3

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?

Robert Deml
  • 12,390
  • 20
  • 65
  • 92
Xilang
  • 1,513
  • 3
  • 18
  • 36

1 Answers1

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
    No. It is not designed for a production environment. – Terry Gardner Sep 03 '11 at 10:24