Group Membership in Active Directory Query

Uwe Hoffmann qual at tiscali.de
Wed Feb 7 11:56:20 EST 2007


kooch54 at gmail.com schrieb:
> ldap_obj = ldap_obj.simple_bind_s('username at domain.company.com',
>                                   'password')
> 
>
> AttributeError: 'NoneType' object has no attribute 'search_Ext_s'
> 

dummy = ldap_obj.simple_bind_s('username at domain.company.com',
                                   'password')
or better simply
ldap_obj.simple_bind_s('username at domain.company.com',
                                   'password')



More information about the Python-list mailing list