Re: Share file between 2 apps

2009-09-02 Thread ramzi khlil
Hi, There is no way to reload it outside the ClassLoader. Ramzi On Wed, Sep 2, 2009 at 2:02 PM, Tim Funk wrote: > If the file is loaded via a ClassLoader - then the JVM will cache it and > you'll need to reload the webppa or restart tomcat. > > -Tim > > ramzi khlil wrote: > >> Hi, >> >> Thank

Re: Share file between 2 apps

2009-09-02 Thread Tim Funk
If the file is loaded via a ClassLoader - then the JVM will cache it and you'll need to reload the webppa or restart tomcat. -Tim ramzi khlil wrote: Hi, Thank you for your response. It's working for me. I have a problem with caching. The server doesn't update the file in temp directory. I set

Re: Share file between 2 apps

2009-09-02 Thread ramzi khlil
Hi, Thank you for your response. It's working for me. I have a problem with caching. The server doesn't update the file in temp directory. I set cachingAllowed to false, but it doesn't work for me. Do you have any idea ? Regards On Wed, Sep 2, 2009 at 1:01 PM, Tim Funk wrote: > There are too

Re: Share file between 2 apps

2009-09-02 Thread Tim Funk
There are too many unknown constraints to answer - but I'll try. In app B - use an init parameter which is a filename where test.xml is located. myfile /usr/local/more/cowbell/test.xml Then when app b needs to write the file; File f = new File(servletContext.getInitPa

Share file between 2 apps

2009-09-02 Thread ramzi khlil
Hi All, I need to share a file between two applications, A and B. A: I put my web site under Root folder and it is using test.xml file. B: The second application which generate the xml file is host under webapps application. My question is how to allow to application B to update test.xml ? Regard