GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
IO::Lambda::HTTP::Authen::NTLM(3) User Contributed Perl Documentation IO::Lambda::HTTP::Authen::NTLM(3)

IO::Lambda::HTTP::Authen::NTLM - library for enabling NTLM authentication in IO::Lambda::HTTP

        use IO::Lambda qw(:all);
        use IO::Lambda::HTTP;
        
        my $req = HTTP::Request-> new( GET => "http://company.com/protected.html" );
        
        my $r = IO::Lambda::HTTP-> new(
                $req,
                username   => 'moo',
                password   => 'foo',
                keep_alive => 1,
        )-> wait;
        
        print ref($r) ? $r-> as_string : $r;

IO::Lambda::HTTP::Authen::NTLM allows to authenticate against servers that are using the NTLM authentication scheme popularized by Microsoft. This type of authentication is common on intranets of Microsoft-centric organizations.

The module takes advantage of the Authen::NTLM module by Mark Bush. Since there is also another Authen::NTLM module available from CPAN by Yee Man Chan with an entirely different interface, it is necessary to ensure that you have the correct NTLM module.

In addition, there have been problems with incompatibilities between different versions of Mime::Base64, which Bush's Authen::NTLM makes use of. Therefore, it is necessary to ensure that your Mime::Base64 module supports exporting of the encode_base64 and decode_base64 functions.

IO::Lambda, Authen::NTLM.

Description copy-pasted from LWP::Authen::Ntlm by Gisle Aas.

Dmitry Karasik, <dmitry@karasik.eu.org>.
2012-03-14 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.