1 Reply Latest reply on Aug 3, 2005 10:46 AM by peterj

    Default Path

    venkitachalam_s81

      What is the default path of JBoss web container. I mean in j2sdkee1.2.1 it is public_html, which is the folder in JBoss.

        • 1. Re: Default Path
          peterj

          If you enter http://localhost:8080, the welcome page that is displayed is located at JBOSS_HOME/server/default/deploy/jbossweb-tomcat55.sar/ROOT.war/index.html. If you simply want to change the links on the home page, editing that file will do.

          However, do not deploy applications there. Instead deploy your application in the normal way (within the "deploy" directory), and add the following to your line to your jboss-web.xml file:

          <context-root>/</context-root>


          Your application's default page will then be displayed for http://localhost:8080.

          I hope this helps.