On Feb 7, 11:56 am, Uwe Hoffmann <[EMAIL PROTECTED]> wrote:
> [EMAIL PROTECTED] schrieb:
>
> > ldap_obj = ldap_obj.simple_bind_s('[EMAIL PROTECTED]',
> >                                   'password')
>
> > AttributeError: 'NoneType' object has no attribute 'search_Ext_s'
>
> dummy = ldap_obj.simple_bind_s('[EMAIL PROTECTED]',
>                                    'password')
> or better simply
> ldap_obj.simple_bind_s('[EMAIL PROTECTED]',
>                                    'password')

First and foremost thanks for the feedback.  Although I don't
appreciate the slight dig at me.
dummy = ldap_obj.simple_bind......

I tried your second recommendation of using
 ldap_obj.simple_bind_s('[EMAIL PROTECTED]','password')

Now I get the following error even after the bind operation seems to
complete successfully.
result = func(*args,**kwargs)
OPERATIONS_ERROR: {'info': '00000000: LdapErr: DSID-0C0905FF, comment:
In order to perform this operation a successful bind must be completed
on the connection., data 0, vece', 'desc': 'Operations error'}

Thanks again...

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to