RE: Loading of Data

2007-04-16 Thread Chris Howe
. > > I take it you mean; logout, login and then clear cache? > > > Thanks & Regards, > > Peter > > -Original Message- > From: David E. Jones [mailto:[EMAIL PROTECTED] > Sent: 16 April 2007 18:14 > To: user@ofbiz.apache.org > Subject: Re: L

RE: Loading of Data

2007-04-16 Thread peter
Hi Adrian, How do you do that? Is this a console command, or a GUI menu option? Thanks & Regards, Peter -Original Message- From: Adrian Crum [mailto:[EMAIL PROTECTED] Sent: 16 April 2007 19:00 To: user@ofbiz.apache.org Subject: Re: Loading of Data No, he means shutdown O

Re: Loading of Data

2007-04-16 Thread Adrian Crum
2007 18:14 To: user@ofbiz.apache.org Subject: Re: Loading of Data Importance: High Just restart ofbiz. -David On Apr 16, 2007, at 11:00 AM, <[EMAIL PROTECTED]> <[EMAIL PROTECTED]> wrote: Hi, Can anyone provide some guidance on what the 'best practice' process on

RE: Loading of Data

2007-04-16 Thread peter
Hi, Thanks for getting back so quick. I take it you mean; logout, login and then clear cache? Thanks & Regards, Peter -Original Message- From: David E. Jones [mailto:[EMAIL PROTECTED] Sent: 16 April 2007 18:14 To: user@ofbiz.apache.org Subject: Re: Loading of Data Import

Re: Loading of Data

2007-04-16 Thread David E. Jones
a nightmare with this. Thanks & Regards, Peter -Original Message- From: David E. Jones [mailto:[EMAIL PROTECTED] Sent: 16 April 2007 17:00 To: user@ofbiz.apache.org Subject: Re: Loading of Data Importance: High Yes, it is true. Welcome to the wonderful world of Java. This is a limit

RE: Loading of Data

2007-04-16 Thread peter
ED] Sent: 16 April 2007 17:00 To: user@ofbiz.apache.org Subject: Re: Loading of Data Importance: High Yes, it is true. Welcome to the wonderful world of Java. This is a limitation of ResourceBundle class in the Java standard API. In fact in general Java was not designed for reloading anyth

Re: Loading of Data

2007-04-16 Thread David E. Jones
rectly, this can't be true. Can anyone add some clarity to this? Thanks & Regards, Peter -Original Message- From: Jacques Le Roux [mailto:[EMAIL PROTECTED] Sent: 12 April 2007 09:39 To: user@ofbiz.apache.org; [EMAIL PROTECTED] Subject: Re: Loading of Data Deploying a cla

RE: Loading of Data

2007-04-16 Thread peter
Peter -Original Message- From: Jacques Le Roux [mailto:[EMAIL PROTECTED] Sent: 12 April 2007 09:39 To: user@ofbiz.apache.org; [EMAIL PROTECTED] Subject: Re: Loading of Data Deploying a classpath resource is similar to deploying a compiled Java class : you have to reload. This article may

Re: Loading of Data

2007-04-12 Thread Scott Gray
All depends on whether it bothers someone enough to code the changes, I suspect it would be quite some time before OFBiz is using code specific to that version of java. Regards Scott On 13/04/07, Adrian Crum <[EMAIL PROTECTED]> wrote: So, where does that leave us? Do we just wait for Java 6 or

Re: Loading of Data

2007-04-12 Thread Adrian Crum
So, where does that leave us? Do we just wait for Java 6 or make the change David suggested? Jacques Le Roux wrote: Interesting, thanks Scott ! Jacques De : "Scott Gray" <[EMAIL PROTECTED]> It looks like they've fixed it in Java 6, it appears to be a popular issue: http://bugs.sun.com

Re: Loading of Data

2007-04-12 Thread Jacques Le Roux
Interesting, thanks Scott ! Jacques De : "Scott Gray" <[EMAIL PROTECTED]> > It looks like they've fixed it in Java 6, it appears to be a popular issue: > http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4212439 > > On 12/04/07, Jacques Le Roux <[EMAIL PROTECTED]> wrote: > > > > My answer was fr

Re: Loading of Data

2007-04-12 Thread Scott Gray
It looks like they've fixed it in Java 6, it appears to be a popular issue: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4212439 On 12/04/07, Jacques Le Roux <[EMAIL PROTECTED]> wrote: My answer was from experience ;o) Is there a Jira issue for that, should we create one ? Jacques > >

Re: Loading of Data

2007-04-12 Thread Jacques Le Roux
My answer was from experience ;o) Is there a Jira issue for that, should we create one ? Jacques > > This would be true except that we use the ResourceBundle class of the > Java API, and that class keeps its own cache that prevents reloading. > > So for now we are stuck with a restart to reload

Re: Loading of Data

2007-04-12 Thread David E. Jones
This would be true except that we use the ResourceBundle class of the Java API, and that class keeps its own cache that prevents reloading. So for now we are stuck with a restart to reload on properties files. We've been talking about rewriting the UtilProperties stuff to not use Resource

Re: Loading of Data

2007-04-12 Thread Scott Gray
I was under the impression the properties are loaded and cached the first time the file is used and can be cleared via webtools Scott On 12/04/07, Jacques Le Roux <[EMAIL PROTECTED]> wrote: Deploying a classpath resource is similar to deploying a compiled Java class : you have to reload. Th

Re: Loading of Data

2007-04-12 Thread Jacques Le Roux
Deploying a classpath resource is similar to deploying a compiled Java class : you have to reload. This article may be of interest in this field : http://www.javaworld.com/javaworld/javatips/jw-javatip125.html Jacques > Hi, > > > When you are working with files that are not using entity tags