RE: Newbie Q:How to prevent Directory listing in Tomcat?

2003-06-10 Thread Phillip Qin
In Tomcat's web.xml, under defaultServlet, change listings to false. It will disable listings for all of the webapps. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: June 8, 2003 7:02 PM To: [EMAIL PROTECTED] Subject: Newbie Q:How to prevent Directory listing

RE: Newbie Q:How to prevent Directory listing in Tomcat?

2003-06-09 Thread David Legg
Hi Bob, In version 4.x Tomcat look for the file TOMCAT_HOME/conf/web.xml This file sets all the default web application settings. Look for the tag sequence: - param-namelistings/param-name And change the param-value tag below it from 'true' (the default setting) to false. Hope that helps.

RE: Newbie Q:How to prevent Directory listing in Tomcat?

2003-06-09 Thread Phillip Qin
Users List' Subject: RE: Newbie Q:How to prevent Directory listing in Tomcat? Hi Bob, In version 4.x Tomcat look for the file TOMCAT_HOME/conf/web.xml This file sets all the default web application settings. Look for the tag sequence: - param-namelistings/param-name And change the param-value

Re: Newbie Q:How to prevent Directory listing in Tomcat?

2003-06-08 Thread Tim Funk
http://tomcatfaq.sourceforge.net/configure.html -Tim [EMAIL PROTECTED] wrote: How can I prevent a client from listing the contents of my web appl. directories without having to put an 'index.html' in the base of each directory? Thanks. Bob. P.s.: I can find any solution(s) in the