Please try to ask on the python LDAP mailing list first:
https://lists.sourceforge.net/lists/listinfo/python-ldap-dev
they will surely have more info to give you.
But from what I see you have given wrong credential and couldn't
perform a successful bind, which is the minimum requirement to be able
to query the directory.
Regards,
Florent.
Florent.
http://tgolden.sc.sabren.com/python/active_directory.html
If you need to stick with python-ldap then it may be easier to debug
you code using
synchronous mode:
l.simple_bind_s(username, password)
Also, try using the initialize function instead of open (open is
depreciated).
Steve
> except ldap.LDAPError, error_message:
using windows as server? win32 are windows-specific modules, they don't exist
on linux.
Diez