Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

LDAP-Server implementation with Delphi

Tags:

ldap

delphi

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.

like image 364
Hein du Plessis Avatar asked Dec 18 '25 01:12

Hein du Plessis


1 Answers

  1. Project JEDI API Library has JwaWinLDAP unit.
  2. There's open source project called LDAP Admin which's written in Delphi, it will help you to get started.
  3. Look at this article Active Directory Service Interfaces, with ADSI service you can talk with LDAP.
  4. You can import com library activeds.dll, and use it with Delphi.
like image 82
Mohammed Nasman Avatar answered Dec 19 '25 14:12

Mohammed Nasman