views:

408

answers:

2

Our (ASP.Net) application has to talk to an LDAP/Active Directory server for verifying user groups. Now several members of our team need to be able to work disconnected.

Is there a way to set up a local LDAP server on the development machine (Windows 7 Pro)?

A: 

Microsoft ADAM will probably work. As far as I know, it's only officially supported on Windows Pro up through XP, but there's a decent chance it'll work on Windows 7 as well. If it doesn't, another possibility to look at would be OpenLDAP.

Jerry Coffin
@Jerry Coffin Thanks for your answer. Unfortunately, it seems that the current ADAM version can't be installed on windows 7... OpenLDAP could be a solution, but there seems to be current windows binary available. ..
jeroenh
+2  A: 

ADAM is now called Active Directory Lightweight Directory Services, and was just published in a Windows 7 version, too - download it here:

http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=a45059af-47a8-4c96-afe3-93dab7b5b658

AD LDS is the best solution for local LDAP development - it allows you to start and stop your AD instances at will (it runs as a Windows service), and you can even have multiple copies running.

Check out more about AD LDS in Technet or MSDN library

marc_s
excellent, thanx!
jeroenh