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: '[EMAIL PROTECTED]'
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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to