Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
I am getting Bad file descriptor error with below code for Net::LADPS.
Note : I am working on strawberry perl version (v5.32.1)use warnings; use strict; use Net::LDAPS; my $ldaps = Net::LDAPS->new( 'ldap server', port => '636', verify => 'require', cafile => 'C:/certicate.cer' ) or die $!; #note i have used .pem too here but failing with the same + "Bad file descriptor error" print "\nLDAPS ::: $ldaps\n";
Any help with this would be appreciated.
Thank you.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Bad file descriptor error with Net::LDAPS.
by kcott (Archbishop) on Aug 02, 2021 at 18:18 UTC | |
by Anonymous Monk on Aug 03, 2021 at 07:05 UTC | |
|
Re: Bad file descriptor error with Net::LDAPS.
by bliako (Abbot) on Aug 03, 2021 at 09:04 UTC | |
by Anonymous Monk on Aug 03, 2021 at 10:27 UTC | |
by bliako (Abbot) on Aug 03, 2021 at 12:35 UTC | |
by Anonymous Monk on Aug 03, 2021 at 12:39 UTC | |
by bliako (Abbot) on Aug 03, 2021 at 13:00 UTC |