> Typing http://servername/context/ results in "Error 404: There
> is no Action mapped for namespace / and action name ." 

To fix this issue, modify your welcome part of web.xml,

<welcome-file-list>
 <welcome-file>index.html</welconpme-file>       
</welcome-file-list>

create an index.html with the following content:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
    <META HTTP-EQUIV="Refresh" CONTENT="0;URL=index.action">
</head>

<body>
<p>Loading ...</p>
</body>
</html>

Then typing http://servername/context/ should work.



      __________________________________________________________________
Be smarter than spam. See how smart SpamGuard is at giving junk email the boot 
with the All-new Yahoo! Mail.  Click on Options in Mail and switch to New Mail 
today or register for free at http://mail.yahoo.ca

---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org

Reply via email to