Re: [RFC] Apache::SessionManager

2002-08-02 Thread Tatsuhiko Miyagawa
Apache::SessionManager has once been discussed here. AFAIK it's not on CPAN though .. http://mathforum.org/epigone/modperl/clarcloigol At Fri, 2 Aug 2002 16:59:43 +0200, Enrico Sorcinelli wrote: After some search on CPAN I haven't found a mod_perl module that does the same thing (right?).

Re: [RFC] Apache::SessionManager

2002-08-02 Thread Matt Sergeant
There's the AxKit one, which does something pretty similar - AxKit::XSP::Session I think it's called. On Fri, 2 Aug 2002, Enrico Sorcinelli wrote: Hi all, I would like to propose a new Apache module before I send it off to CPAN. The namespace I've chosen is Apache::SessionManager. This

Re: [RFC] Apache::SessionManager

2002-08-02 Thread Perrin Harkins
Enrico Sorcinelli wrote: Apache::SessionManager creates an object session (in Header parsing phase, but not obligatorily) and make it available to all other handlers transparently by putting in pnotes. Others handlers can retrieve session directly from pnotes or by calling the simple

Re: [RFC] Apache::SessionManager

2002-08-02 Thread Enrico Sorcinelli
On Fri, 02 Aug 2002 23:56:18 +0900 Tatsuhiko Miyagawa [EMAIL PROTECTED] wrote: Apache::SessionManager has once been discussed here. AFAIK it's not on CPAN though .. http://mathforum.org/epigone/modperl/clarcloigol Hi Tatsuhiko, I'am in modperl list from beginnig of 2001. The thread you've

Re: [RFC] Apache::SessionManager

2002-08-02 Thread Enrico Sorcinelli
On Fri, 02 Aug 2002 11:33:15 -0400 Perrin Harkins [EMAIL PROTECTED] wrote: Enrico Sorcinelli wrote: Apache::SessionManager creates an object session (in Header parsing phase, but not obligatorily) and make it available to all other handlers transparently by putting in pnotes. Others

Re: [RFC] Apache::SessionManager

2002-08-02 Thread Perrin Harkins
Enrico Sorcinelli wrote: Some of the Apache::Auth* modules like Apache::AuthCookieURL are close, but I don't know of any that do the actual glue with Apache::Session. You might want to look at some of the existing modules and see if a merge of some kind is possible. This modules haven't

Re: [RFC] Apache::SessionManager

2002-08-02 Thread Enrico Sorcinelli
On Fri, 2 Aug 2002 16:31:04 +0100 (BST) Matt Sergeant [EMAIL PROTECTED] wrote: There's the AxKit one, which does something pretty similar - AxKit::XSP::Session I think it's called. It seems to be two modules that manage sessions over AxKit: Apache::AxKit::Plugin::Session (flexible

Re: [RFC] Apache::SessionManager

2002-08-02 Thread Enrico Sorcinelli
On Fri, 02 Aug 2002 13:12:30 -0400 Perrin Harkins [EMAIL PROTECTED] wrote: Right, that's my point. Your module has overlap with them in terms of managing cookies and specifying locations, but adds the actual calls to Apache::Session. If I were doing something like this, I would probably

Re: [RFC] Apache::SessionManager

2002-08-02 Thread Perrin Harkins
Enrico Sorcinelli wrote: Incidentally there is also a session manager module very similar to this in the Extropia modules. Sincerely, I don't know Extropia modules! You can find some documentation on them here:

Re: [RFC] Apache::SessionManager

2002-08-02 Thread Matt Sergeant
On Friday, August 2, 2002, at 05:40 PM, Enrico Sorcinelli wrote: The only way that I know to have a session framework is to use mod_perl application server like AxKit, HTML::Mason or Apache::ASP ... Actually the AxKit one doesn't require AxKit - but it ships with an XSP taglib to access the

[RFC] Apache::SessionManager

2002-08-02 Thread Enrico Sorcinelli
Hi all, I would like to propose a new Apache module before I send it off to CPAN. The namespace I've chosen is Apache::SessionManager. This module is a an Apache/mod_perl module and use Apache::Session to track user's sessions over HTTP request. Simply Apache::SessionManager help me with