RE: configuration is frozen

2004-01-09 Thread Lucas Halim
Craig, thanks for the clarification. It helps. > * We'd have to synchronize around all accesses to the > HashMap instances inside the configuration beans that > are accessed on every request, causing a performance hit. I assume this means Struts 1.1 has significant performance improvement comp

RE: configuration is frozen

2004-01-08 Thread Craig R. McClanahan
Quoting Lucas Halim <[EMAIL PROTECTED]>: > Thanks Hubert. > > Anybody knows why is it frozen at the first place? Is that just another mod > in Struts 1.1? > Without freezing the configuration, two bad things would happen: * We'd have to synchronize around all accesses to the HashMap instance

RE: configuration is frozen

2004-01-08 Thread Lucas Halim
That makes sense. > -Original Message- > From: Hubert Rabago [mailto:[EMAIL PROTECTED] > Sent: Thursday, January 08, 2004 11:49 AM > To: Struts Users Mailing List > Subject: RE: configuration is frozen > > There was a thread just recently discussing that. You may b

RE: configuration is frozen

2004-01-08 Thread Hubert Rabago
> > From: Hubert Rabago [mailto:[EMAIL PROTECTED] > > Sent: Thursday, January 08, 2004 11:05 AM > > To: Struts Users Mailing List > > Subject: Re: configuration is frozen > > > > You can try something like: > > > > ActionForward basis = mapping.f

RE: configuration is frozen

2004-01-08 Thread Lucas Halim
Thanks Hubert. Anybody knows why is it frozen at the first place? Is that just another mod in Struts 1.1? Lucas > -Original Message- > From: Hubert Rabago [mailto:[EMAIL PROTECTED] > Sent: Thursday, January 08, 2004 11:05 AM > To: Struts Users Mailing List > Subject: Re

Re: configuration is frozen

2004-01-08 Thread Hubert Rabago
You can try something like: ActionForward basis = mapping.findForward("success"); ActionForward success = new ActionForward(); success.setPath(basis.getPath()); // also copy other relevant properties from "basis" success.setRedirect(true); return success; hth, Hubert --- Lucas Halim <[EMAIL PROT

Re: Configuration is frozen -what does it mean?

2002-05-13 Thread Craig R. McClanahan
On 13 May 2002 [EMAIL PROTECTED] wrote: > Date: 13 May 2002 10:59:21 - > From: [EMAIL PROTECTED] > Reply-To: Struts Users Mailing List <[EMAIL PROTECTED]> > To: [EMAIL PROTECTED] > Subject: Configuration is frozen -what does it mean? > > Hi! > I often get an error messaget that says that th