hi,
i am getting the following message:
org.apache.jasper.JasperException: Cannot find message resources under key
org.apache.struts.action.MESSAGE
at
org.apache.jasper.servlet.JspServletWrapper.service (
JspServletWrapper.java:2
54)
at
org.apache.jasper.servlet.JspServlet.serviceJspFile (
JspServlet.java:295)
at
org.apache.jasper.servlet.JspServlet.service (
JspServlet.java:241)
...
i am running struts 1.1 on apache 4.1. and this is the most basic example:
------------------
my BookView.jsp
------------------
<%@(protected)" %>
<%@(protected)" %>
<%@(protected)" %>
<%@(protected)" %>
<html:html locale="true">
<head>
<html:base/>
<title>
<bean:message key="index.title"/>
</title>
</head>
<body>
<h2>BookView</h2>
</body>
</html:html>
------------------
from my web.xml:
------------------
<web-app>
<servlet>
<servlet-name>action</servlet-name>
<servlet-class>
org.apache.struts.action.ActionServlet</servlet-class>
<init-param>
<param-name>application</param-name>
<param-value>ApplicationResources</param-value>
</init-param>
<init-param>
<param-name>config</param-name>
<param-value>/WEB-INF/struts-config.xml</param-value>
</init-param>
<init-param>
----------------------------
my struts-config.xml:
----------------------------
<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE struts-config PUBLIC
"-//Apache Software Foundation//DTD Struts Configuration 1.0//EN"
"http://jakarta.apache.org/struts/dtds/struts-config_1_0.dtd">
<struts-config>
<message-resources parameter="ApplicationResources.properties"/>
</struts-config>
any help will be much appreciated,
thanks,
-prash.
---------------------------------------------------------------------
To unsubscribe, e-mail: struts-user-unsubscribe@(protected)
For additional commands, e-mail: struts-user-help@(protected)