Hi Phillip,
> I am trying to write a mod_perl custom handler for a directory, but need
> it to access the Apache::ASP $Session hash pointer - is this possible?
in the handler, you can create an ASP object
and the corresponding Session sub object like
..
$r->dir_config('RequestBinaryRead', 'Off');
my $ASP = Apache::ASP::new('Apache::ASP', $r, $r->filename);
$r->dir_config('RequestBinaryRead', 'On');
my $session = $ASP->Session;
..
[$r = Apache::RequestRec]
I hope, that is what you need..
Helmut
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]