RE: Hide download file

2002-07-18 Thread Cox, Charlie
); return; } chain.doFilter(req,resp); } -Original Message- From: Lars Nielsen Lind [mailto:[EMAIL PROTECTED]] Sent: Wednesday, July 17, 2002 5:34 PM To: Tomcat Users List Subject: Re: Hide download file Cox, Charlie wrote

Re: Hide download file

2002-07-17 Thread Irina Lishchenko
On Wednesday 17 July 2002 16:48, you wrote: Hi. We are using an Upload component to upload files to the server. The files are placed in /fileserver/files - a directory outside of webapps. Anyone that have example files on how to retrive the files (download) via JavaBean/JSP from a

RE: Hide download file

2002-07-17 Thread Cox, Charlie
: Hide download file On Wednesday 17 July 2002 16:48, you wrote: Hi. We are using an Upload component to upload files to the server. The files are placed in /fileserver/files - a directory outside of webapps. Anyone that have example files on how to retrive the files (download

Re: Hide download file

2002-07-17 Thread Lars Nielsen Lind
List Subject: Re: Hide download file On Wednesday 17 July 2002 16:48, you wrote: Hi. We are using an Upload component to upload files to the server. The files are placed in /fileserver/files - a directory outside of webapps. Anyone that have example files on how to retrive the files

RE: Hide download file

2002-07-17 Thread Cox, Charlie
I just answered this last week. Use a filter that checks the session and leave your download files in a directory under webapps. Filters make this simple. Don't do any more work than you need to :) Charlie I have found an article at www.javaworld.com about witing servlets for

Re: Hide download file

2002-07-17 Thread Lars Nielsen Lind
Cox, Charlie wrote: I just answered this last week. Use a filter that checks the session and leave your download files in a directory under webapps. Filters make this simple. Don't do any more work than you need to :) Charlie I have found an article at www.javaworld.com about witing servlets