Apache::Application::Plus is a Perl module for Apache/mod_perl integration for CGI::Application::Plus.
SYNOPSIS
# used instead of CGI::Application::Plus
use base 'Apache::Application::Plus' ;
# direct interaction with the Apache request object
$r = $self->request ;
%headers = $r->headers_in ;
# virtual run mode pages
# instead of using this
http://www.yourdomain.com/cgi-bin/appScript.pl?rm=aRunMode
# you can use this
http://www.yourdomain.com/aRunMode
This module is a CGI::Application::Plus sub class that supply a perl handler to integrate your application modules with the Apache/mod_perl server.
Use this module as base class instead of the CGI::Application::Plus, if your application can take advantage from accessing the Apache request object (available as the request property), and/or to run() your application in a handy and alternative way. If you don't need any of the above features, you can use the CGI::Application::Plus module that is however fully mod_perl 1 and 2 compatible.
Product's homepage
Requirements:
· Perl
· Apache/mod_perl 1 or 2
· OOTools