Hi!

I have the same problem with the messages:

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

I have already read here about solutions. None worx for me, or I am so 
dumb that I can't get it right. I've attached the web.xml and 
struts-config.xml files.

Please help me!!! 10x in advance!

Marius



<?xml version="1.0" encoding="ISO-8859-1" ?>
<!DOCTYPE struts-config PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 1.1//EN" "http://jakarta.apache.org/struts/dtds/struts-config_1_1.dtd";>
<struts-config>
	<message-resources 
		key="org.apache.struts.action.MESSAGE" 
		name="ApplicationResources.properties" 
	/>
</struts-config>

<?xml version="1.0"?>

<!DOCTYPE web-app PUBLIC '-//Sun Microsystems, Inc.//DTD Web Application 2.2//EN' 'http://java.sun.com/j2ee/dtds/web-app_2_2.dtd'>
<web-app>
    <display-name>List</display-name>
    <servlet>
        <servlet-name>ListTag</servlet-name>
        <jsp-file>ListTag.jsp</jsp-file>
        <init-param>
            <param-name>application</param-name>
            <param-value>WEB-INF/ApplicationResources.properties</param-value>
        </init-param>
        <init-param>
            <param-name>config</param-name>
            <param-value>WEB-INF/struts-config.xml</param-value>
        </init-param>
        <load-on-startup>1</load-on-startup>
    </servlet>
    <welcome-file-list>
        <welcome-file>ListTag.jsp</welcome-file>
    </welcome-file-list>
</web-app>

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

Reply via email to