I haven't tried this, but it looks it should work.

To change this setting for all webapps deployed in JBoss, change 
deploy/jbossweb-tomcat55.sar/conf/web.xml:

from

  |    <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>
  | 
to

  |    <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>false</param-value>
  |       </init-param>
  |       <load-on-startup>1</load-on-startup>
  |    </servlet>
  | 


View the original post : 
http://locahost:8080/index.html?module=bb&op=viewtopic&p=3892446#3892446

Reply to the post : 
http://locahost:8080/index.html?module=bb&op=posting&mode=reply&p=3892446


-------------------------------------------------------
SF.Net email is Sponsored by the Better Software Conference & EXPO
September 19-22, 2005 * San Francisco, CA * Development Lifecycle Practices
Agile & Plan-Driven Development * Managing Projects & Teams * Testing & QA
Security * Process Improvement & Measurement * http://www.sqe.com/bsce5sf
_______________________________________________
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user

Reply via email to