Howdy, >I have a webapp that makes use of the session to store a key to track >the current state of a user. This all works fine under Tomcat 4.0 but >when I move to 4.1 on Linux I get a problem as soon as I start invoking >multiple frames on a page. It seems that a different thread is used for >the two frames on my page, and that the new thread that gets invoked >doesn't have the session object any more. Does anybody know of a way to >change the configuration of Tomcat 4.1 so that I share the session >between the two frames?
Sessions will be shared between the two frames. Can you post specific code that fails in tomcat 4.1.x but works in 4.0.x? It is entirely possible, and legal, for different frames (which are different HTTP requests) to be served by different request processing threads in tomcat. That wouldn't affect the session. Yoav Shapira This e-mail, including any attachments, is a confidential business communication, and may contain information that is confidential, proprietary and/or privileged. This e-mail is intended only for the individual(s) to whom it is addressed, and may not be saved, copied, printed, disclosed or used by anyone else. If you are not the(an) intended recipient, please immediately delete this e-mail from your computer system and notify the sender. Thank you. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
