RE: refreshing application properties

2002-09-17 Thread Edgar Dollin
Write a method which removes the attribute (or sets it null) named 'org.apache.struts.action.MESSAGE' or similar object in the application context. edgar -Original Message- From: Andy Kriger [mailto:[EMAIL PROTECTED]] Sent: Tuesday, September 17, 2002 10:43 AM To: 'Struts Users Mailing

RE: refreshing application properties

2002-09-17 Thread James Mitchell
I could be wrong, but every thing I've seen tell me that you can't do this with the current MessageResources API. There is no call for reloading or even modifying values. I've written a DBMessageResources, and working on XMLMessageResources, there seems to be an cache issue, so (currently) I am

RE: refreshing application properties

2002-09-17 Thread Tero P Paananen
I could be wrong, but every thing I've seen tell me that you can't do this with the current MessageResources API. There is no call for reloading or even modifying values. This is correct. We recently implemented a way to reload the application resources by extending the MessageResource API.

Re: refreshing application properties

2002-09-17 Thread Eddie Bush
That doesn't just go for MessageResources -- it goes for all of your entire web-app config. Once the configuration has been frozen, any attempt to modify it will meet with an exception being thrown. Regards, Eddie James Mitchell wrote: I could be wrong, but every thing I've seen tell me

Re: refreshing application properties

2002-09-17 Thread Michael Lee
] Sent: Tuesday, September 17, 2002 12:07 PM Subject: Re: refreshing application properties That doesn't just go for MessageResources -- it goes for all of your entire web-app config. Once the configuration has been frozen, any attempt to modify it will meet with an exception being thrown