Xavier Noria wrote:
It seems, however, that Apache::Session objects stop being stored when I put the session in pnotes() with a code analogous to this:

Can you tell us more about the problem is? What do you see when you take the session hash back out of pnotes?


my $r = Apache::Request->instance(shift);

No need to involve Apache::Request just for this. Your handler should be getting $r passed to it.


tie my (%session), 'Apache::Session::Oracle', undef,
{Handle => $class->dbh(), Commit => 1};
$r->pnotes(session => \%session);

Show us the code you use to get it back.


- Perrin



--
Reporting bugs: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html



Reply via email to