1 Reply Latest reply on Jul 13, 2004 4:54 PM by aalmero

    Directory listing on jboss

    rathinrawal

      Hi All

      I have an application in production.

      A jsp file name login.jsp is the entry(Welcome file) for this application.

      We have been encountering problems of late where almost everyother week, when a user attempts to connect to the application, the JBoss would instead of serving the login.jsp would show the entire folder structure of application.

      is there a configuration problem somewhere that I have not addressed?

      Regards

      Rathin

        • 1. Re: Directory listing on jboss
          aalmero

          you may need to edit your

          <JBOSS_HOME>\server\default\deploy\jbossweb-tomcat41.sar\web.xml
          and change as follows
          <init-param>
           <param-name>listings</param-name>
           <param-value>true</param-value>
           </init-param>
          
          to
          <init-param>
           <param-name>listings</param-name>
           <param-value>false</param-value>
           </init-param>
          


          hth
          aalmero