Re: strong bind fails

2009-01-20 Thread Dieter Kluenter
Quanah Gibson-Mount qua...@zimbra.com writes: --On Monday, January 19, 2009 12:41 PM +0100 Dieter Kluenter die...@dkluenter.de wrote: I tried starttls and EXTERNAL mechanism ,[ start_tls ] | my $ldap = Net::LDAP-new($host, | async = 1, |

Re: strong bind fails

2009-01-19 Thread Dieter Kluenter
Graham Barr gb...@pobox.com writes: On Jan 18, 2009, at 8:37 AM, Dieter Kluenter wrote: OK, this is my complete script, ,[ searchList.pl ] | $msg = $ldap-bind(sasl = $sasl); | $msg-code $msg-error_text; Again, you are not checking the bind call for any failure I checked it on

Re: strong bind fails

2009-01-18 Thread Graham Barr
On Jan 17, 2009, at 10:01 AM, Dieter Kluenter wrote: Hi, I'am using perl-5.10.0 Net::LDAP version 0.39 Authen::SASL version 2.12 My script does not initiate a strong bind, while a strong bind with ldapsearch succeeds, what is wrong with my script? Or with perl-5.10, as am not sure but I think

Re: strong bind fails

2009-01-18 Thread Dieter Kluenter
Graham Barr gb...@pobox.com writes: On Jan 17, 2009, at 10:01 AM, Dieter Kluenter wrote: Hi, I'am using perl-5.10.0 Net::LDAP version 0.39 Authen::SASL version 2.12 You do not say how far your script gets, but if bind fails that is not going to tell you. did you mean $msg-code die

Re: strong bind fails

2009-01-18 Thread Graham Barr
On Jan 18, 2009, at 8:37 AM, Dieter Kluenter wrote: OK, this is my complete script, ,[ searchList.pl ] | $msg = $ldap-bind(sasl = $sasl); | $msg-code $msg-error_text; Again, you are not checking the bind call for any failure Graham.