When you try to print a message with <bean:message> do you get any output?  
If not, then I would definitely say it's not on the classpath.  I've had 
this strange problem before but I think I "solved" it by adding it to 
tomcat's classpath.  Try putting the properties file lower in your classes 
directory like com.yourcorp.ApplicationResources.

Dave


>From: "Michael Deegan" <[EMAIL PROTECTED]>
>Reply-To: "Struts Users Mailing List" <[EMAIL PROTECTED]>
>To: [EMAIL PROTECTED]
>Subject: Problem with ApplicationResources properties file.
>Date: Tue, 10 Sep 2002 18:15:37 -0600
>
>Hi all,
>When an error occurs in my application I am getting the words "null null" 
>appearing and nothing else.
>
>I know the normal problem when you receive the "null null" message is that 
>there is no "errors.footer" or "errors.header" lines in the properties 
>file.
>
>My ApplicationResources.properties file is in the WEB-INF/classes directory 
>and I have set an init-param in my web.xml file.
>
>But, I don't think the application is accessing my intended properties 
>file.
>
>Has anyone experienced a similar problem ?
>Does anyone have any constructive hints / tips for me to keep looking to 
>solve this problem ?
>
>Would this be related to a CLASSPATH problem ?
>Could the application be accessing another "properties" file somewhere?
>
>Thanks in advance,
>Mike Deegan
>
>
>I have read the setup guide as per:
>
>http://jakarta.apache.org/struts/doc-1.0.2/userGuide/building_view.html#i18n
>
>
>I have a properties file name ApplicationResources.properties in my 
>/WEB-INF/classes dir
>
>errors.footer=</ul><hr>
>errors.header=<h3><font color="red">Validation Error</font></h3>You must 
>correct the following error(s) before proceeding:<ul>
>errors.ioException=I/O exception rendering error messages: {0}
>error.removed.attraction=<li><font color="red">Selected attraction has been 
>removed.</font></li>
>error.create.attraction=<li><font color="red">Unable to create the 
>attraction.</font></li>
>error.duplicate.attraction=<li><font color="red">Specified attraction 
>already exists.</font></li>
>error.removed.event=<li><font color="red">Selected event has been 
>removed.</font></li>
>error.create.event=<li><font color="red">Unable to create the 
>event.</font></li>
>error.duplicate.event=<li><font color="red">Specified event already 
>exists.</font></li>
>error.removed.userRole=<li><font color="red">Selected user role has been 
>removed.</font></li>
>error.create.userRole=<li><font color="red">Unable to create the user 
>role.</font></li>
>error.duplicate.userRole=<li><font color="red">Specified user role already 
>exists.</font></li>
>error.removed.occassion=<li><font color="red">Selected occassion has been 
>removed.</font></li>
>error.create.occassion=<li><font color="red">Unable to create the 
>occassion.</font></li>
>error.duplicate.occassion=<li><font color="red">Specified occassion already 
>exists.</font></li>
>error.missing.userId=<li><font color="red">Please enter the user 
>id.</font></li>
>error.missing.password=<li><font color="red">Please enter the 
>password.</font></li>
>error.missing.name=<li><font color="red">Please enter the name.</font></li>
>error.missing.description=<li><font color="red">Please enter the 
>description.</font></li>
>error.missing.webSite=<li><font color="red">Please enter the web 
>site.</font></li>
>error.missing.address=<li><font color="red">Please enter the 
>address.</font></li>
>error.missing.ticketPrice=<li><font color="red">Please enter the ticket 
>price.</font></li>
>error.missing.webSiteURL=<li><font color="red">Please enter the 
>webSiteURL.</font></li>
>error.missing.location=<li><font color="red">Please enter the 
>location.</font></li>
>error.missing.startDate=<li><font color="red">Please enter the 
>startDate.</font></li>
>error.missing.endDate=<li><font color="red">Please enter the 
>endDate.</font></li>
>error.missing.dateString=<li><font color="red">Please enter the 
>dateString.</font></li>
>error.missing.image=<li><font color="red">Please enter the 
>image.</font></li>
>error.missing.activeFlag=<li><font color="red">Please enter the 
>activeFlag.</font></li>
>error.missing.createTS=<li><font color="red">Please enter the 
>createTS.</font></li>
>error.missing.createUser=<li><font color="red">Please enter the 
>createUser.</font></li>
>error.missing.lastUpdateUserTS=<li><font color="red">Please enter the 
>lastUpdateUserTS.</font></li>
>error.missing.lastUpdateUser=<li><font color="red">Please enter the 
>lastUpdateUser.</font></li>
>error.missing.id=<li><font color="red">Please enter the id.</font></li>
>error.database.missing=<li><font color="red">Database is missing, cannot 
>continue.</font></li>
>error.dataaccess.invalid=<li><font color="red">Data Access problem 
>encountered - Please try again later.</font></li>
>error.loginId.required=<li><font color="red">User Id must be 
>supplied.</font></li>
>error.loginId.notfound=<li><font color="red">User Id not found.</font></li>
>error.loginId.notactive=<li><font color="red">User Id not 
>active.</font></li>
>error.userPassword.required=<li><font color="red">Password must be 
>supplied.</font></li>
>error.userPassword.invalid=<li><font color="red">Password invalid - Please 
>try again.</font></li>
>error.unexpected=<font color="red">Unxpected error, Please contact 
>webmaster.</font>
>
>
>I have added the following to my web.xml
>
><!-- Standard Action Servlet Configuration -->
><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>debug</param-name>
><param-value>2</param-value>
></init-param>
><init-param>
><param-name>detail</param-name>
><param-value>2</param-value>
></init-param>
><init-param>
><param-name>validate</param-name>
><param-value>true</param-value>
></init-param>
><init-param>
><param-name>convertNull</param-name>
><param-value>true</param-value>
></init-param>
><load-on-startup>2</load-on-startup>
></servlet>
>
>
>
>
>
>_________________________________________________________________
>Chat with friends online, try MSN Messenger: http://messenger.msn.com
>
>
>--
>To unsubscribe, e-mail:   
><mailto:[EMAIL PROTECTED]>
>For additional commands, e-mail: 
><mailto:[EMAIL PROTECTED]>




_________________________________________________________________
Join the world’s largest e-mail service with MSN Hotmail. 
http://www.hotmail.com


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

Reply via email to