RE: Tomcat Webapp barfing when saving Image

2006-12-12 Thread Peter Crowther
> From: Mon Cab [mailto:[EMAIL PROTECTED] > file:/etc/tomcat5/Catalina/localhost/datingapp.xml > 2006-12-11 22:58:00,036 [main] ERROR > tomcat.localhost./datingapp.Context - Error starting static Resources > java.lang.IllegalArgumentException: Document base /datingapp does not > exist or is not a

Tomcat Webapp barfing when saving Image

2006-12-11 Thread Mon Cab
Hi I am trying to store a file in my webapp (Tomcat on Fedora) and am using File serverFile = new File(file_pathname); serverFile.createNewFile(); FileOutputStream os = new FileOutputStream(serverFile); os.write(fileData); os.close(); but I a