At 11:24 PM 08/14/00 +0000, Greg Cope wrote:
>I'm writing a Session-Manager (transhandler) i.e deals with getting a
>session id from cookies, uri, or query args, and sets one and redirects
>if neccessary. This is meant to compliment Apache::Session - in that
>you use Apache::Session to store your session data.
FWIW -- I'm using a modified version of Ken Williams' Apache::AuthCookie to
handle session control via cookies or munged URLs. I originally wanted to
use his custom login script instead of the pop-up browser login, but I had
clients that don't have cookies enabled. So I added the URL munge into
AuthCookie.
I realized that bypassing the Apache::AuthCookie login script that
AuthCookie was perfect (at least for my needs) for simple session
management.
The only changes needed to the AuthCookie config are:
# Enable URL munging
PerlTransHandler Sample::AuthCookie
# Disable the login script requirement
PerlSetVar WhatEverLoginScript NONE
If anyone is interested, please let me know. (Ken, are these features
worth adding to AuthCookie?)
BTW -- Why can't I use
PerlTransHandler Sample::AuthCookieHandler
instead of
PerlTransHandler Sample::AuthCookie
Shouldn't handler() be found in @ISA?
Bill Moseley
mailto:[EMAIL PROTECTED]