RE: File isn't found in ROOT directory

2006-07-11 Thread McRaven, Brian
sday, July 11, 2006 11:54 AM To: Tomcat Users List Subject: Re: File isn't found in ROOT directory admin/index.jsp is a placeholder page for the admin webapp, not shipped with tomcat. If you placed it there, the url would be http://localhost:8080/admin/index.jsp. --David McRaven, B

Re: File isn't found in ROOT directory

2006-07-11 Thread David Smith
ss it. Brian -Original Message- From: David Smith [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 11, 2006 11:32 AM To: Tomcat Users List Subject: Re: File isn't found in ROOT directory Two issue here: 1. Place the index.jsp in webapps/ROOT instead of webapps/ROOT/admin 2. ROOT co

RE: File isn't found in ROOT directory

2006-07-11 Thread McRaven, Brian
from. I notice that if I put my index.jsp in a subfolder of the ROOT directory then I can access it. Brian -Original Message- From: David Smith [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 11, 2006 11:32 AM To: Tomcat Users List Subject: Re: File isn't found in ROOT directory Two

Re: File isn't found in ROOT directory

2006-07-11 Thread David Smith
Two issue here: 1. Place the index.jsp in webapps/ROOT instead of webapps/ROOT/admin 2. ROOT context that comes with tomcat has all it's jsp files pre-compiled. Your new index.jsp is being ignored in favor of the pre-compiled version. Remove the servlet mapping in webapps/ROOT/WEB-INF/web.x

RE: File isn't found in ROOT directory

2006-07-11 Thread McRaven, Brian
I'm using Tomcat 5.5.17 and the server.xml file has this in it: Thanks, Brian -Original Message- From: Pid [mailto:[EMAIL PROTECTED] Sent: Tuesday, July 11, 2006 10:56 AM To: Tomcat Users List Subject: Re: File isn't found in ROOT directory what version of tomcat? what ha

Re: File isn't found in ROOT directory

2006-07-11 Thread Pid
what version of tomcat? what have you got defined in the s in your server.xml? McRaven, Brian wrote: > I have placed an index.jsp file that I created in my servers > webapps/ROOT folder. When I place the following address in my browser: > > http://localhost/index.jsp > > I still come up with

File isn't found in ROOT directory

2006-07-11 Thread McRaven, Brian
I have placed an index.jsp file that I created in my servers webapps/ROOT folder. When I place the following address in my browser: http://localhost/index.jsp I still come up with the tomcat homepage on my local host. I know that file is located in the ROOT/admin folder is there some way that m