From: Chris R. <chr...@me...> - 2002-06-05 11:05:46
|
Murugan K G <mur...@ya...> wrote: > Hi Chris > Thanks for your immediate response. > I am binding with LDAP3 only as > $ldap->bind('admin',password => 'novell', version=>3) > or die "Not able to bind"; > > and also i tried without RequestValue and getting > the same result. Any more ideas? Since the Extended operation you're creating is a proprietary one from Novell, I would recommend reading Novell's documentation of it. It may be that there are some restrictions on its use that you haven't fulfilled yet! > Do you people have any sample script for extensions. The only Extended operation I can see in the Net::LDAP distribution is in Net::LDAP::start_tls(). That contains a minor buglet which was recently fixed - it used to say this: $mesg->encode( extendedRequest => { requestName => "1.3.6.1.4.1.1466.20037", } ); and it should say this: $mesg->encode( extendedReq => { requestName => "1.3.6.1.4.1.1466.20037", } ); Cheers, Chris |