Hi,
I have the following files:
c:\Tomcat\webapps\register
user\index
.jsp
<%@ page language="java" %>
<%@ taglib uri="/WEB-INF/struts-bean.
tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-html.
tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-logic
.tld" prefix="logic" %>
<html:html locale="true">
<head>
<title><bean:message key="index.title" /></title>
<html:base/>
</head>
<body>
<bean:message key="index.text1" />
</body>
</html:html>
c:\Tomcat\webapps\register
user\web.x
ml
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE web-app
PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN"
"
http://java.sun.com//dtd/web-app_2_2.dtd">
<web-app>
<!-- Action Servlet Configuration -->
<servlet>
<servlet-name>action</serv
let-name>
<servlet-class>org.apache.
struts.act
ion.Action
Servlet</s
ervlet-cla
ss>
<!-- Resources bundle base class -->
<init-param>
<param-name>application</p
aram-name>
<param-value>ApplicationRe
sources</p
aram-value
>
</init-param>
<!-- Context-relative path to the XML resource containing Struts configuration info -->
<init-param>
<param-name>config</param-
name>
<param-value>/WEB-INF/stru
ts-config.
xml</param
-value>
</init-param>
<!-- The debugging detail level for this servlet, which controls how much info is logged -->
<init-param>
<param-name>debug</param-n
ame>
<param-value>2</param-valu
e>
</init-param>
<load-on-startup>2</load-o
n-startup>
</servlet>
<!-- Action Servlet mapping -->
<servlet-mapping>
<servlet-name>action</serv
let-name>
<url-pattern>*.do</url-pat
tern>
</servlet-mapping>
<!-- The Welcome file list -->
<welcome-file-list>
<welcome-file>index.jsp</w
elcome-fil
e>
</welcome-file-list>
<!-- Application Tag Library Descriptor -->
<taglib>
<taglib-uri>/WEB-INF/app.t
ld</taglib
-uri>
<taglib-location>/WEB-INF/
app.tld</t
aglib-loca
tion>
</taglib>
<!-- Struts Tag Library Descriptor -->
<taglib>
<taglib-uri>/WEB-INF/strut
s-bean.tld
</taglib-u
ri>
<taglib-location>/WEB-INF/
struts-bea
n.tld</tag
lib-locati
on>
</taglib>
<taglib>
<taglib-uri>/WEB-INF/strut
s-html.tld
</taglib-u
ri>
<taglib-location>/WEB-INF/
struts-htm
l.tld</tag
lib-locati
on>
</taglib>
<taglib>
<taglib-uri>/WEB-INF/strut
s-logic.tl
d</taglib-
uri>
<taglib-location>/WEB-INF/
struts-log
ic.tld</ta
glib-locat
ion>
</taglib>
</web-app>
c:\Tomcat\webapps\register
user\WEB-I
NF\classes
\Applicati
onResource
s.properti
es
index.title=My 1st Struts Application!
index.text1=This is my 1st Struts Application.
c:\Tomcat\webapps\register
user\WEB-I
NF\classes
\Applicati
onResource
s_fr.prope
rties
index.title=Ma premiere application Struts
index.text1=Ceci est ma premiere application Struts
and I got the following error message from Tomcat 4
Cannot find message resources under key org.apache.struts.action.M
ESSAGE
I have the following files inside my c:\Tomcat\webapps\register
user\
.classpath
.project
I m using jakarta-tomcat-4.1.18, j2sdk1.4.0 and eclipse 2.1
Actually I m following the guide on this site
http://www.isabelle-hurbain.com/repository/docs/struts.pdfPls help....