Patil, Sheetal wrote:
if I write in browser like http://indc-idc:1500/application/pages/ it give list of all the files in folder "pages"
This is a Tomcat question, but if you look in the web.xml located at $CATALINA_HOME/conf/web.xml, you'll see something like this:
<servlet> <servlet-name>default</servlet-name> <servlet-class>org.apache.catalina.servlets.DefaultServlet</servlet-class> <init-param> <param-name>debug</param-name> <param-value>0</param-value> </init-param> <init-param> <param-name>listings</param-name> <param-value>true</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet> For the listings param, you should set it to false. -Dave --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]