Lemonldap::NG::Portal::AuthRemote - Authentication module for Lemonldap::NG


Lemonldap-NG-Portal documentation  | view source Contained in the Lemonldap-NG-Portal distribution.

Index


NAME

Top

Lemonldap::NG::Portal::AuthRemote - Authentication module for Lemonldap::NG that delegates authentication to a remote Lemonldap::NG portal.

SYNOPSIS

Top

  use Lemonldap::NG::Portal::Simple;
  my $portal = new Lemonldap::NG::Portal::Simple(

         # AUTHENTICATION PART
         authentication      => 'Remote', 
         remotePortal        => 'https://auth.remote.com/',
         # Example with SOAP access to remote session DB
         remoteGlobalStorage => 'Lemonldap::NG::Common::Apache::Session::SOAP',
         remoteGlobalStorageOptions => {
             proxy    => 'https://auth.remote.com/index.pl/sessions',
             ns => 'urn://auth.remote.com/Lemonldap/NG/Common/CGI/SOAPService',
             user     => 'myuser',
             password => 'mypass',
         }
         # Optional parameters if remote parameters are not the same.
         # Example with default values:
         remoteCookieName => 'lemonldap',
         remoteUserField  => 'uid',

         # USER DATABASE PART (not required if remote users exists in your DB)
         userDB              => 'Remote',
    );

DESCRIPTION

Top

Authentication module for Lemonldap::NG portal that delegates authentication to a remote portal.

SEE ALSO

Top

http://lemonldap-ng.org/

AUTHOR

Top

Xavier Guimard, <x.guimard@free.fr>

COPYRIGHT AND LICENSE

Top


Lemonldap-NG-Portal documentation  | view source Contained in the Lemonldap-NG-Portal distribution.