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

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?
  • Comment on Re^6: How to keep an object between HTTP requests?

Replies are listed 'Best First'.
Re^7: How to keep an object between HTTP requests?
by Corion (Patriarch) on Feb 15, 2010 at 10:11 UTC

    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.