On Mon, 7 Aug 2000, Jitesh Kumar wrote:
> All I want is to store the generated key in the session variable so
> that I could retrieve the same on the subsequent page user visits for
> authentication purpose. I can't rely on client side cookies as they
> are not full proof.
If you don't want to use cookies, you'll need to put the session ID in the
URL somehow. At the moment, there isn't a module on CPAN written for this
specific purpose, but Apache::ASP does have it built in and if that fits
your needs it's the easiest way to go. You could also pick up a copy of
the book "Witing Apache Modules with Perl and C" (the Eagle book) and
refer to the example of session tracking using path_info.
- Perrin