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: index.jsp In this jsp, make use of a logic redirect to actually redirect to your action through a global ActionForward: <%@ taglib uri="http://struts.apache.org/tags-logic"; prefix="logic" %> Then update your struts-co

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: > > > /Index.do > I believe that should be "index.do" rather than "/index.do". (And presumably not starting with an upper-case "I"...) FWIW, -- Hassan Schroeder [EMAIL PROTECTED] ---

Re: the tomcat welcome file one struts action

2007-09-09 Thread Miren Urkixo
quot;Gabriel Wong" <[EMAIL PROTECTED]> To: "Tomcat Users List" 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 I

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

Re: the tomcat welcome file one struts action

2007-09-08 Thread Gabriel Wong
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 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,

the tomcat welcome file one struts action

2007-09-08 Thread Miren Urkixo
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 show the action, shows me the all files from the index directory, listing my / directory. Can you help me