You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@struts.apache.org by Prashanth Narayanan <pr...@ecostech.com> on 2003/10/29 22:57:21 UTC

Please help: Cannot find message resources under key org.apache. struts.action. MESSAGE

still couldn't resolve this
any help will be appreciated - this is my first struts example!

-----Original Message-----
From: Prashanth Narayanan 
Sent: Wednesday, October 29, 2003 1:54 PM
To: 'struts-user@jakarta.apache.org'
Subject: Cannot find message resources under key
org.apache.struts.action. MESSAGE


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
------------------
<%@ 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>
<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@jakarta.apache.org
For additional commands, e-mail: struts-user-help@jakarta.apache.org

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


RE: Please help: Cannot find message resources under key org.apache.struts.action. MESSAGE

Posted by Rajat Pandit <ra...@centergroupinc.com>.
<struts-config>
	<message-resources parameter="ApplicationResources.properties"/>
</struts-config>

According to your struts config, the path for the res. File should be
something like this.
/WEB-INF/classes/ApplicationResources/properties.properties

The res file being named properties.properties which Is not wrong just
that it sounds funny. 
I guess you got my hint. So you will need to make osme changes. And I
guess RTFM!!
Take care and hope this helps!
Rajat


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