Re: Preventing directory listings in WebApplication

2005-01-10 Thread epyonne
There are two ways to do that: 1. Turn off the directory listing in one of the configuration file. But I cannot remember which one off the top of my head. 2. Put an index.jsp with a generic message in each folder. Hope this helps. - Original Message - From: Paul Taylor [EMAIL

Re: Preventing directory listings in WebApplication

2005-01-10 Thread Ben Souther
Just before the error page listings in your application's web.xml file. 4305 4306 welcome-file-list id=WelcomeFileList_1 4307 welcome-fileindex.html/welcome-file 4308 welcome-fileindex.jsp/welcome-file 4308 welcome-filestart.jsp/welcome-file - 4309

Re: Preventing directory listings in WebApplication

2005-01-10 Thread Paul Taylor
Ok Ive realised what I was doing wrong I was listing a file on each directory as follows welcome-file-list id=WelcomeFileList_1 welcome-filesection1/start.jsp/welcome-file welcome-filesection2/start.jsp/welcome-file /welcome-file-list when i just needed to specify the file Also you can use

RE: preventing directory listings

2003-10-06 Thread Boemio, Neil (GEI, FGI)
In the web.xml under the conf directory, change the listings parameter to false for the default servlet. This is for 4.1.27, don't know if the same applies to 3.3.1a servlet servlet-namedefault/servlet-name servlet-class org.apache.catalina.servlets.DefaultServlet