Link to home
Start Free TrialLog in
Avatar of James Bendall
James Bendall

asked on

LDAP Setup on Windows 2000 Workstation

I'm developing ASP pages which will need to interact with directory details via LDAP, so I need to set up a basic LDAP service on my development machine (stand-alone workstation running Windows 2K) to test my code.
The pages are basically registration forms for a website which authenticates against LDAP so most of the operations are pretty basic: creating, reading and updating user entries.
Thanks
James
Avatar of browolf
browolf

you're saying the development machine isnt connected to your domain?
is it a Windows 2000 Pro or Sever.. if it is Pro u cannot install LDAP cos it needs directory services like ADO..

If it is Windows 2000 server, then yeah u can install the LDAP services from the CD..
Avatar of James Bendall

ASKER

browolf
As above, I'm working on a single standalone workstation so no network

adonis1976
It's Windows 2000 Pro.

What I'm really looking for is something as lightweight as possible that I can run on my workstation.
can u not setup a test win2k server and connect yourself to it?
LDAP is really for interacting with active directory, so even if an ldap service existed you still wouldnt have the AD backend.

you can connect to the local machine account by using "WinNT://Local1/" type adsi commands.

whether adsi and ldap connect strings are freely interchangeable is another matter.
then it is not possible to run LDAP services on your workstation... you could have it was a windows 2000 server.. as browolf said.. it would be best to setup a server box for testing..
Thanks for the feedback - I suspected Active Directory would be a non-starter. Unfortunately I don't have the hardware to spare to set up a separate server just for this.

I was really hoping to get some form of LDAP compliant directory service (not necessarily Active Directory, perhaps OpenLDAP or similar) running on my workstation and use that - in the same way that I can run IIS or SQL Server on the workstation to simulate Client Server operations.
ASKER CERTIFIED SOLUTION
Avatar of browolf
browolf

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Sorry for the delay in confirming.  

In the end I went a totally different route.  It turns out Novell have a free access LDAP directory in the developers area of their website and I was able to do most of my testing against that.

However as the solutions suggested were relevant and would have worked, they're well worth an A.

Thanks to everyone for their comments.