On Thursday 04 January 2007 15:42, you wrote: > Thanks Achim, > That helps. At least I now know that SSPI is the auth I need to look for.. > Just hope I can pass it through Net::LDAP
Passing it through Net::LDAP means using a module implementing the SASL authentication standard (See RFC2222), in that case the GSSAPI mechanism (to use Kerberos5). One module implementing SASL and GSSAPI is Authen::SASL::Perl::GSSAPI (by Simon Wilkinson), using a RFC2744 C-Implematation (MIT Kerberos or Heimdal, for example). In case of Win32-SSPI that means writing a SASL-Adapter using the SSPI instead of RFC2744 and implementing the Authen::SASL interface. (Or does anyone know of a RFC2744-to-SSPI adapter?) Achim