NAME

Apache2::Controller::Session::Cookie - track a sessionid with a cookie in A2C

SYNOPSIS

See Apache2::Controller::Session for detailed setup example.

package MyApp::Session;
use base qw( Apache2::Controller::Session::Cookie );
sub get_options {
    # ...
}
1;

DESCRIPTION

This module implements get_session_id to get the session id from a cookie. The cookie's path is the <Location> in which you said to use your Apache2::Controller::Session subclass as a handler.

SEE ALSO

Apache2::Controller::Session

AUTHOR

Mark Hedges, <hedges at scriptdolphin.org>

COPYRIGHT & LICENSE

Copyright 2008 Mark Hedges, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.