Code Comments

Programming Forum and web based access to our favorite programming groups.
For Programmers: Free Programming Magazines | New: Database administration forum
Registration is free! Edit your profileCalendarFind other membersFrequently Asked QuestionsSearch -> 
Post New Thread











Thread
Author

[ANNOUNCE] CGI::Builder::SessionManager 1.00
The uploaded file

CGI-Builder-SessionManager-1.00.tar.gz

has entered CPAN as

file: $CPAN/authors/id/E/EN/ENRYS/CGI-Builder-SessionManager-1.00.tar.gz
size: 3459 bytes
md5: 4c26c6d56afa06ff53bfc464d2cd6d26

I've included perldoc at the bottom of this mail.

Any comment and/or criticism are welcome :-)

by

- Enrico

---


NAME
CGI::Builder::SessionManager - 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'};
}

DESCRIPTION
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.

INSTALLATION
In order to install and use this package you will need Perl version
5.005 or better.

Prerequisites:

* CGI::Builder >= 1.2
* Apache::SessionManager >= 1.01

Installation as usual:

% perl Makefile.PL
% make
% make test
% su
Password: *******
% make install

PROPERTIES
This module adds "sm" property to the standard CBF properties.

It's possible to set a value in current session with:

$cbf->sm->{'foo'} = 'baz';

and it's possible to read value session with:

print $cbf->sm->{'foo'};

METHODS
sm_destroy
Destroy the current session object.

$cbf->sm_destroy;

EXAMPLES
This is a simple CGI::Builder application, (save it, for example, as
/some/path/cgi-builder/WebApp.pm):

package WebApp;    # your class name
use CGI::Builder qw/ CGI::Builder::SessionManager /;
use Data::Dumper;

sub PH_AUTOLOAD {                           # always called for all requeste
d pages
my $cbf = shift;
$cbf->page_content = "Default content";  # defines the page content
}

sub PH_session {
my $cbf = shift;
$cbf->page_content = "Session test!<BR>\n";
$cbf->sm->{"$$-" . rand()} = rand;
$cbf->page_content .= '<PRE>' . Dumper($s->cbf) . '</PRE>';
}

sub PH_delete_session {
my $cbf = shift;
$cbf->page_content = "Session test! (deletion)";
$cbf->sm_destroy;
}

and the correspondent configuration lines in httpd.conf:

<IfModule mod_perl.c>

PerlModule Apache::SessionManager
PerlTransHandler Apache::SessionManager

Alias /cgi-builder "/usr/local/apache/cgi-builder"
<Location /cgi-builder>
SetHandler perl-script
PerlHandler Apache::Registry
PerlSendHeader On
PerlSetupEnv   On
Options +ExecCGI

PerlSetVar SessionManagerTracking On
PerlSetVar SessionManagerExpire 1800
PerlSetVar SessionManagerInactivity 900
PerlSetVar SessionManagerName CBFSESSIONID
PerlSetVar SessionManagerStore File
PerlSetVar SessionManagerStoreArgs "Directory => /tmp/apache_session_data/cb
f"
PerlSetVar SessionManagerDebug 1
</Location>

</IfModule>

In order to test this simple application you must implement the Instance
Script that is what is actually called by your web server.

It is a very small, simple file which simply creates an instance of your
application and calls an inherited method, "process()". Following is the
entirely of /some/path/cgi-builder/webapp.cgi:

#!/usr/local/bin/perl -w
use WebApp;
my $webapp = new WebApp;
$webapp->process();

Restart the httpd server and launch
*http://localhost/cgi-builder/webapp.cgi* .

BUGS
Please submit bugs to CPAN RT system at
http://rt.cpan.org/NoAuth/ReportBug...-SessionManager
or by email at bug-cgi-builder-sessionmanager@rt.cpan.org

Patches are welcome and I'll update the module if any problems will be
found.

VERSION
Version 1.00

SEE ALSO
Apache::SessionManager, CGI::Builder

AUTHOR
Enrico Sorcinelli, <enrico at sorcinelli.it>

COPYRIGHT AND LICENSE
Copyright (C) 2004 by Enrico Sorcinelli

This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself, either Perl version 5.8.2 or, at
your option, any later version of Perl 5 you may have available.


Report this thread to moderator Post Follow-up to this message
Old Post
Enrico Sorcinelli
07-29-04 08:55 PM


Sponsored Links




Last Thread Next Thread Next
Search this forum -> 
Post New Thread

PERL Modules archive

Show a Printable Version Send to friend Email This Page to Someone! subscribe to this thread Receive updates to this thread
Computer Consultants
Programming Jobs
Visual Basic Controls
SQL Server Programming
Webservices
Java Security
Visual Studio
C# Programming
Visual J++
Software engineering
Open source Software
Perl Programming
PHP Programming
ASP Programming
ASP .NET Programming
Visual Basic Programming
Windows Scripting Host
Java Programming
Java Help
Java Beans
VBScript
Cobol
MAC Applications
Unix Programming
Forum Jump:
All times are GMT. The time now is 04:31 PM.

 
Free MCSE Braindumps | Real Estate Topics

Programming forum archive

Copyrights CodeComments.com 2004 - 2006

Powered by vBulletin Copyright 2000-2006 Jelsoft Enterprises Limited.