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
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]
---
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
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
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,
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