Re: how setup landing page in tomcat

2006-04-11 Thread manivannan84
:37:57 -0700 (PDT) Subject: how setup landing page in tomcat Hi I am new to Tomcat 5 config. I have a webapp running on tomcat, and to get to it you have to type http://this.com/dir1/dir2/dir3/file.html, and I want to change the settings so that when you type http://this.com, you get to the

Re: how setup landing page in tomcat

2006-04-10 Thread Alexander Panzhin
Just remove everyting between and and change your index.jsp so that i would include either a response.sendRedirect() or meta-refresh(or more exotic javascript's location) I don't think meta-refresh is applicable here. Seems that when Tomcat gets the basic url, http://thissite.com, it look

Re: how setup landing page in tomcat

2006-04-10 Thread Bryan
I don't think meta-refresh is applicable here. Seems that when Tomcat gets the basic url, http://thissite.com, it looks for web.xml in webapps/root/web-inf. The content of this XML file is: http://java.sun.com/xml/ns/j2ee"; xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; xsi:sc

Re: how setup landing page in tomcat

2006-04-10 Thread P Y
(not very TC specific) ... Use a "refresh" http://www.html-reference.com/META_httpequiv_refresh.htm On 4/10/06, Bryan <[EMAIL PROTECTED]> wrote: > > Hi > I am new to Tomcat 5 config. I have a webapp running on tomcat, and to > get to it you have to type http://this.com/dir1/dir2/dir3/file.html, a

RE: how setup landing page in tomcat

2006-04-10 Thread John Powers
1.Use an index.jsp that has a meta-refresh to the right directory? Or 2. use IIS to do it with a tomcat worker behind it. -Original Message- From: Bryan [mailto:[EMAIL PROTECTED] Sent: Monday, April 10, 2006 9:38 AM To: users@tomcat.apache.org Subject: how setup landing page in

how setup landing page in tomcat

2006-04-10 Thread Bryan
Hi I am new to Tomcat 5 config. I have a webapp running on tomcat, and to get to it you have to type http://this.com/dir1/dir2/dir3/file.html, and I want to change the settings so that when you type http://this.com, you get to the right subdirectory. I know how to do this in IIS, but have not