- 
        1. Re: root directoryjasonbrome Aug 4, 2002 8:11 AM (in response to cbosner)You could package your WAR into an EAR, and in the EAR's application.xml specify a context root of / 
 This would make this web app the root application.
 See http://www.jboss.org/modules/bb/index.html?module=bb&op=viewtopic&t=forums/
- 
        2. Re: root directorycbosner Aug 5, 2002 3:35 PM (in response to cbosner)thanks jasonbrome that worked..Now I was wondering if there is a way to remove the /servlet from my url. Thanks again 
- 
        3. Re: root directorycbosner Aug 5, 2002 5:12 PM (in response to cbosner)nevermind I got it...thanks again for your help 
- 
        4. Re: root directorychaos Sep 11, 2002 9:59 AM (in response to cbosner)Hi, 
 Could you tell me how to remove the servlet from the url pls ?
 Thanks in advance
- 
        5. Re: root directorycbosner Sep 12, 2002 1:11 PM (in response to cbosner)in your web.xml make sure your servlet mapping does not have /servlet in it. i.e. 
 <servlet-name>servletname</servlet-name>
 <servlet-class>YourServletClass</servlet-class>
 <servlet-mapping>
 <servlet-name>servletname</servlet-name>
 <url-pattern>/servletname</url-pattern>
 </servlet-mapping>
 
     
    