Re: How to block listings on a SPECIFIC directory

2002-09-22 Thread Tim Funk
> -Original Message- > From: Tim Funk [mailto:[EMAIL PROTECTED]] > Sent: Thursday, September 19, 2002 2:10 PM > To: Tomcat Users List > Subject: Re: How to block listings on a SPECIFIC directory > > > More info: > http://www.google.com/search?hl=en&lr=&ie=UT

RE: How to block listings on a SPECIFIC directory

2002-09-20 Thread adi
: Tomcat Users List Subject: Re: How to block listings on a SPECIFIC directory More info: http://www.google.com/search?hl=en&lr=&ie=UTF-8&oe=UTF-8&q=servlet+filter The definitive reference: Java Servlet Specification 2.3 (at java.sun.com) Chapter 6: Filters adi wrote: >

RE: How to block listings on a SPECIFIC directory

2002-09-19 Thread Milt Epstein
xml override things in the server-wide one. Should be quick and easy to test at least. > > -Original Message- > > From: adi [mailto:[EMAIL PROTECTED]] > > Sent: Thursday, September 19, 2002 10:07 AM > > To: Tomcat Users List > > Subject: RE: How to block listings

RE: How to block listings on a SPECIFIC directory

2002-09-19 Thread Milt Epstein
sday, September 19, 2002 2:21 PM > To: Tomcat Users List > Subject: RE: How to block listings on a SPECIFIC directory > > > Hmmm... Why don't you put a file like "index.html" in the directory? > Assuming you have a welcome files list in your web.xml file, this will b

RE: How to block listings on a SPECIFIC directory

2002-09-19 Thread Turner, John
m: adi [mailto:[EMAIL PROTECTED]] > Sent: Thursday, September 19, 2002 10:07 AM > To: Tomcat Users List > Subject: RE: How to block listings on a SPECIFIC directory > > > these directories contain text files that should be avalable > for users while > browsing the dir

RE: How to block listings on a SPECIFIC directory

2002-09-19 Thread adi
directory Do you put static content in these directories? -Original Message- From: adi [mailto:[EMAIL PROTECTED]] Sent: 19 September, 2002 7:26 AM To: Tomcat Users List Subject: RE: How to block listings on a SPECIFIC directory new directories are being created dynamically and they should be

RE: How to block listings on a SPECIFIC directory

2002-09-19 Thread Sexton, George
Do you put static content in these directories? -Original Message- From: adi [mailto:[EMAIL PROTECTED]] Sent: 19 September, 2002 7:26 AM To: Tomcat Users List Subject: RE: How to block listings on a SPECIFIC directory new directories are being created dynamically and they should be

Re: How to block listings on a SPECIFIC directory

2002-09-19 Thread Padhu Vinirs
t Users List >Subject: RE: How to block listings on a SPECIFIC directory > > >Hmmm... Why don't you put a file like "index.html" in the directory? >Assuming you have a welcome files list in your web.xml file, this will be >displayed. You can then put up a message,

RE: How to block listings on a SPECIFIC directory

2002-09-19 Thread adi
PM To: Tomcat Users List Subject: RE: How to block listings on a SPECIFIC directory Hmmm... Why don't you put a file like "index.html" in the directory? Assuming you have a welcome files list in your web.xml file, this will be displayed. You can then put up a message, and re-dire

RE: How to block listings on a SPECIFIC directory

2002-09-19 Thread Sexton, George
Hmmm... Why don't you put a file like "index.html" in the directory? Assuming you have a welcome files list in your web.xml file, this will be displayed. You can then put up a message, and re-direct to where you want them to be. George Sexton MH Software, Inc. Home of Connect Daily Web Calendar S

Re: How to block listings on a SPECIFIC directory

2002-09-19 Thread Tim Funk
gt; can you please reference me to some reading on 'filters' ? > > Thanks, > Adi > > > -Original Message- > From: Tim Funk [mailto:[EMAIL PROTECTED]] > Sent: Thursday, September 19, 2002 1:53 PM > To: Tomcat Users List > Subject: Re: How to blo

RE: How to block listings on a SPECIFIC directory

2002-09-19 Thread adi
Re: How to block listings on a SPECIFIC directory Nope - but you can write a filter to detect that condition and deny access as desired. adi wrote: > Hello, > > I am trying to enable listing on one directory ( and its children) > only. > the listings parameter set to false or tr

Re: How to block listings on a SPECIFIC directory

2002-09-19 Thread Tim Funk
Nope - but you can write a filter to detect that condition and deny access as desired. adi wrote: > Hello, > > I am trying to enable listing on one directory ( and its children) > only. > the listings parameter set to false or true will affect everything. > is it possible in any way to define