in reply to NTLM authentication for Microsoft sharepoint

I renamed the "Ntlm.pm" to "ntlm.pm" assuming some issue with cases.
What is Ntlm.pm? In any case, don't do that. Module names are case sensitive.
  • Comment on Re: NTLM authentication for Microsoft sharepoint

Replies are listed 'Best First'.
Re^2: NTLM authentication for Microsoft sharepoint
by nilanjan (Initiate) on Feb 26, 2009 at 04:18 UTC
    Thanks for your response Anonymous Monk. "Ntlm.pm" the Perl library which is under "C:\Perl\site\lib\LWP\Authen" folder. I thought windows is not able to differentiate the case and hence renamed it to "ntlm.pm".
      Its called LWP::Authen::Ntlm , and its important that you call it LWP::Authen::Ntlm. Here's why
      D:\>perl -MStrict -e" $blah = 3 D:\>perl -Mstrict -e" $blah = 3 Global symbol "$blah" requires explicit package name at -e line 1. Execution of -e aborted due to compilation errors.
      Case is important.