RE: using struts in a load-balanced environement

2001-03-30 Thread Doug Wright
thanks for all your great advice! -Original Message- From: Doug Wright [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 28, 2001 4:50 PM To: [EMAIL PROTECTED] Subject: using struts in a load-balanced environement I am very curious about whether the struts framework could

RE: using struts in a load-balanced environement

2001-03-29 Thread Abraham Kang
]] Sent: Wednesday, March 28, 2001 4:50 PM To: [EMAIL PROTECTED] Subject: using struts in a load-balanced environement I am very curious about whether the struts framework could be applied in a 'load-balanced' or 'webserver-farm' environment. One of the main requirements

using struts in a load-balanced environement

2001-03-28 Thread Doug Wright
I am very curious about whether the struts framework could be applied in a 'load-balanced' or 'webserver-farm' environment. One of the main requirements of the application I am currently working on is that it function properly in such a distributed or load-balanced environment where each

RE: using struts in a load-balanced environement

2001-03-28 Thread Kurt Olsen
by session id. At least I'm praying that something like this works when/if we get our app to the server farm size. Kurt -Original Message- From: Doug Wright [mailto:[EMAIL PROTECTED]] Sent: Wednesday, March 28, 2001 2:50 PM To: [EMAIL PROTECTED] Subject: using struts in a load-balanced

RE: using struts in a load-balanced environement

2001-03-28 Thread james . webster
Yes. High-end servlet engines will replicate session state between one or more servers in the cluster; to how many it gets replicated depends on the specific implementation. For example when you cluster Weblogic servers, each new session is assigned a primary server and a secondary server. All

RE: using struts in a load-balanced environement

2001-03-28 Thread Craig R. McClanahan
On Wed, 28 Mar 2001, Kurt Olsen wrote: It's been my impression that the bigger servers can maintain session across webservers. I thought that when something was stuck in the session that it must be Serializable and when session.setAttribute(x,y) was called that the object was stashed