Reputation: 3357
Does anyone have information on developing a LDAP server in Delphi?
I have a multi-function printing device that needs to authenticate a user over LDAP. There are a set of rules that should be checked before the approval can be given to the user to print.
These rules need to be implemented server side, so that the printer ldap client can query the server for authorisation.
Upvotes: 3
Views: 10291
Reputation: 36644
As far as I know, there is no LDAP server implementation for Delphi. Even commercial libraries like IP*Works! only contain LDAP clients.
If you need a native Windows LDAP server, which is compact and does not require the full Microsoft Windows Server license, maybe ADAM / AD LDS is an option. It is available from Microsoft for Windows 7 here. (all Microsoft Server editions include Active Directory Services, supporting LDAP, Kerberos and other standards).
Upvotes: 1
Reputation: 36644
The light-weight Ararat Synapse TCP/IP library (for Delphi and Free Pascal) includes LDAP client support.
Upvotes: 2
Reputation: 11050
activeds.dll
, and use it with Delphi.Upvotes: 3
Reputation: 9294
I dont know about LDAP with Delphi but I found these:
- Delphi LDAP Support by Christopher Burke
- Delphi LDAP Authentication Component
Upvotes: -1