in reply to State-keeping modules

You might want to look at Apache::SessionManager if you're using mod_perl. It handles a lot of the details for you. The persistence is done with Apache::Session.

Replies are listed 'Best First'.
Re^2: State-keeping modules
by mlh2003 (Scribe) on Mar 03, 2005 at 01:40 UTC
    UPDATE Rewritten due to negative reputation directed at my previously short post (possibly taken as abrupt...)

    Thanks perrin.
    I'm not using mod_perl at this stage. Are there any other solutions than appending the session id to the query string?

      Not really. Both modules have problems, but both are now actively maintained.
        OK. Thanks for the feedback perrin. I wasn't sure if there was another way around it if cookies were disabled (other than using a hidden form field - but that would require a form with a submit button on each page, whether a form was already on a page or not...)
        --------------------
        mlh2003