Hi, I have a question about using ldaps.pm directly using a URL. For example, when I do on the command line: GET -U -s ldaps://myldapssite.com
I get: 500 LWP::Protocol::ldap::request called for 'ldaps' in the output. Looking at the code, this will _always_ happen because of these lines in ldap.pm: my $url = $request->url; if ($url->scheme ne 'ldap') { my $scheme = $url->scheme; return new HTTP::Response &HTTP::Status::RC_INTERNAL_SERVER_ERROR, "LWP::Protocol::ldap::request called for '$scheme'"; } How did you intend to have ldaps.pm used, and how would I get this functionality to work? Thanks in advance for your help! - Suan