Rolf Broehmer wrote: > > Can you explain me what you mean with binding and how that works ??
Which LDAP programming lib?
With python-ldap a simple bind looks like this:
>>> import ldap
>>> l=ldap.open('localhost')
>>> l.bind_s('cn=Michael Stroeder,dc=stroeder,dc=com','geheim',ldap.AUTH_SIMPLE)
Ciao, Michael.
