tags:

views:

26

answers:

2

Hi,

I have a Tomcat 6.0.24 server running. I'm using to run some JSP pages. Would it be possible to host files on it? E.g. If I type in http://localhost:8080/Sample.avi I would download Sample.avi? Probably there are better servers I guess for this task, but I'd like to stick to Tomcat since I don't wish to install another server. Is it possible?

Thanks and regards, Krt_Malta

+1  A: 

It's possible: simply add a <Context> in the server.xml file to point to the directory containing you files.

Maurice Perry
+1  A: 

Yes, it's possible. A quick google suggests you need a StaticInterceptor

What you call "files" is usually called "static content" in web terms: a fixed resource at a specific URI.

MSalters