aspose file tools
The moose likes Tomcat and the fly likes How to configure tomcat to read files on mapped network drive Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Products » Tomcat
Reply Bookmark "How to configure tomcat to read files on mapped network drive" Watch "How to configure tomcat to read files on mapped network drive" New topic
Author

How to configure tomcat to read files on mapped network drive

X Smith
Greenhorn

Joined: Aug 18, 2005
Posts: 2
If I run the file reader of S:\test.txt as an application out side of TOM cat is fine. If I run it in tomcat through JSP page, it says "Path not found" Can some one help?

Thanks
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35249
    
    7
Inside of a web application you need to absolute paths, not relative paths like "test.txt", because a web app has no notion of a default directory. Or are you actually using "S:\\test.xt" as path? You could investigate by having the JSP print out the full path.


Android appsImageJ pluginsJava web charts
X Smith
Greenhorn

Joined: Aug 18, 2005
Posts: 2
Thanks for replying. I did use the absolute path "s:\\test.txt" . If I put the file on my local drive and I put "C:\test.txt" in FileReader(), it works. If I put the file to S drive which is a mapped network drive and put "S:\test.txt" in FileReader(), it does not work.

There are something related to Tomcat login user permission. Do you think so?
Ulf Dittmer
Marshal

Joined: Mar 22, 2005
Posts: 35249
    
    7
I'm not all that familiar with using Windows network drives in Java, but you can try using the UNC naming convention, i.e. "\\server\share\file_path" instead.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: How to configure tomcat to read files on mapped network drive
 
Similar Threads
tomcat not starting
IntelliJ Community edition
Tomcat and iSeries
SOAP AND TOMCAT, Error
which app server is easy for j2ee developing.