Re: the tomcat welcome file one struts action

2007-09-09 Thread Lilianne E. Blaze
Try creating an empty file named Index.do in /. Greetings, Lilianne E. Blaze Miren Urkixo wrote: Hello I am trying to make one web aplication using struts into one tomcat 5.0.XX In my web.xml file i writte whic is my welcome file, one struts action (Index.do) but the tomcat doesn't not

Re: the tomcat welcome file one struts action

2007-09-09 Thread Miren Urkixo
@tomcat.apache.org Sent: Sunday, September 09, 2007 1:14 AM Subject: Re: the tomcat welcome file one struts action You may want to check on the Struts list. It could be a CASE SENSITIVITY issue. Does your app come up when you include Index.do in the URL? Miren Urkixo wrote: Hello I am trying

Re: the tomcat welcome file one struts action

2007-09-09 Thread Hassan Schroeder
On 9/9/07, Miren Urkixo [EMAIL PROTECTED] wrote: And into the web.xml i have: welcome-file-list welcome-file/Index.do/welcome-file /welcome-file-list I believe that should be index.do rather than /index.do. (And presumably not starting with an upper-case I...) FWIW, -- Hassan Schroeder

Re: the tomcat welcome file one struts action

2007-09-09 Thread Yannick Haudry
Create a simple index.jsp and declare it as your welcome file in web.xml: welcome-file-list welcome-fileindex.jsp/welcome-file /welcome-file-list In this jsp, make use of a logic redirect to actually redirect to your action through a global ActionForward: %@ taglib