Re: Using session bean for action form is a design flaw

2001-03-01 Thread Craig R. McClanahan
Tony & Kian Heffner wrote: > Hi, > Since action form is stored as JSP session bean, large scale web application > that are running on a load balancing cluster environment will not be able to > use Struct. If the container supports the servlet spec properly, there should not be a problem here. I

Re: Using session bean for action form is a design flaw

2001-03-01 Thread Incze Lajos
On Thu, Mar 01, 2001 at 01:18:55PM -0500, Tony & Kian Heffner wrote: > Hi, > Since action form is stored as JSP session bean, large scale web application > that are running on a load balancing cluster environment will not be able to > use Struct. Could you give some details why do you think so? J

Re: Using session bean for action form is a design flaw

2001-03-01 Thread martin . cooper
Form beans are created in session scope by default. However, you can specify request scope instead. Just add the scope attribute to your action definitions in struts-config.xml. The Struts Example application does this, so you can look at its struts-config.xml for the details. Hope this helps

RE: Using session bean for action form is a design flaw

2001-03-01 Thread Abraham Kang
Message- > From: Tony & Kian Heffner [mailto:[EMAIL PROTECTED]] > Sent: Thursday, March 01, 2001 10:19 AM > To: [EMAIL PROTECTED] > Subject: Using session bean for action form is a design flaw > > > Hi, > Since action form is stored as JSP session bean, large scale web &

Using session bean for action form is a design flaw

2001-03-01 Thread Tony & Kian Heffner
Hi, Since action form is stored as JSP session bean, large scale web application that are running on a load balancing cluster environment will not be able to use Struct. Does Strut has any plan to solve this issue or to support web farm? If so, what would be the timeline for such a feature to be a