in reply to Re^4: How to keep an object between HTTP requests?
in thread How to keep an object between HTTP requests?

Are you sure that your session works without your object?

  • Comment on Re^5: How to keep an object between HTTP requests?

Replies are listed 'Best First'.
Re^6: How to keep an object between HTTP requests?
by kornerr (Novice) on Feb 15, 2010 at 10:06 UTC
    I use the object instantiation exactly to find out if the session is kept between page updates which I can't see. What should I do?

      Print debug information to your log file (via warn for example) whenever you find an existing session and when you create a new session. Inspect the HTTP traffic to see whether the cookies get sent back and forth. Check whether your browser has stale cookies or block cookies.