CGI::Builder::SessionManager is a Perl module for CGI::Builder / Apache::SessionManager integration.
SYNOPSIS
package WebApp;
use CGI::Builder qw/ CGI::Builder::SessionManager /;
sub PH_session {
my $cbf = shift;
$cbf->page_content = 'Session test page!';
$cbf->sm->{'foo'} = 'baz';
$cbf->page_content .= $cbf->sm->{'foo'};
}
CGI::Builder::SessionManager is a CGI::Builder extension that integrates Apache::SessionManager session management into CGI::Builder framework (CBF).
Apache::SessionManager is a mod_perl (1.0 and 2.0) module that helps session management of a web application. This module is a wrapper around Apache::Session persistence framework for session data. It creates a session object and makes it available to all other handlers transparenlty. See 'perldoc Apache::SessionManager' for module documentation and use.
Product's homepage
Requirements:
· Perl