RE: Tomcat Writing to NFS

2008-07-29 Thread Kevin Daly (kedaly)
:32 PM To: Tomcat Users List Subject: Re: Tomcat Writing to NFS -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Kevin, Kevin Daly (kedaly) wrote: | I have a Web Application running on Tomcat that writes to NFS. Since the same JVM and same standard classes are being used to write to the file

Tomcat Writing to NFS

2008-07-23 Thread Kevin Daly (kedaly)
Hi, I have a Web Application running on Tomcat that writes to NFS. the code doing the write is: String transcriptPath = ... StringBuffer buffer = BufferedWriter buffWriter = new BufferedWriter(new FileWriter(transcriptPath)); buffWriter.write(buffer.toString());

Re: Tomcat Writing to NFS

2008-07-23 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Kevin, Kevin Daly (kedaly) wrote: | I have a Web Application running on Tomcat that writes to NFS. Since the same JVM and same standard classes are being used to write to the file, there should be no difference between your webapp and a standalone