Re: [HA and failover - Re: saving session attributes across server machines]

2001-04-20 Thread Tim O'Neil
This is a good link, for one thing it had a link to another article that explains the stateless nature of the http protocol as I understand it: http://www.javaworld.com/javaworld/jw-12-2000/jw-1221-servlets.html "What is a session? The interaction between a Web browser and a Web server is

Re: saving session attributes across server machines

2001-04-16 Thread Kief Morris
Raul Valenberg typed the following on 03:36 PM 4/15/2001 -0600 We are designing a Web application with Servlets and JSPs that has to run on several machines in a fail-over mode. Each machine also has to participate in the workload as longs it is up. Furthermore, our requirements state that if a

RE: saving session attributes across server machines

2001-04-16 Thread nati shalom
PROTECTED] Subject: saving session attributes across server machines Hi, We are designing a Web application with Servlets and JSPs that has to run on several machines in a fail-over mode. Each machine also has to participate in the workload as longs it is up. Furthermore, our requirements state that

saving session attributes across server machines

2001-04-15 Thread Raul Valenberg
Hi, We are designing a Web application with Servlets and JSPs that has to run on several machines in a fail-over mode. Each machine also has to participate in the workload as longs it is up. Furthermore, our requirements state that if a user session begins at one server, the fail-over to another

HA and failover - Re: saving session attributes across server machines

2001-04-15 Thread David Crooke
We are using a strategy where the information in the Java VM (session and site-wide) is a read cache of what is in a relational database; any update is persisted immediately, and there is a cache invalidation mechanism between appservers. Since like most web apps we have a high read to write