Do you have the application param specified for the action servlet in your web.xml? If not, I would suggest you look at a standard setup in the examples and see how they reference the application.properties file.

Here is how I do it in one instance:


<!--============================================================ ACTION SERVLET =============================================================-->

  <servlet>
    <servlet-name>action</servlet-name>
    <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
    <init-param>
      <param-name>application</param-name>
      <param-value>resources.properties.messages</param-value>
    </init-param>
    <init-param>
      <param-name>config</param-name>
      <param-value>/WEB-INF/struts-config.xml</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>
    <load-on-startup>1</load-on-startup>
  </servlet>

This means I have the messages.properties (which is the same as your application.properties with a different name) file in a directory/folder called "resources" in classes.

'Hope this helps.

Micael

At 08:27 PM 8/13/2003 +0530, Samanth Athrey wrote:
Hi,

I have my application.properties file stored in the classes directory. But
the application is unable to locate and load this file. Any tips would be of
great help.

Thanks,
Samanth Athrey




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



LEGAL NOTICE


This electronic mail transmission and any accompanying documents contain information belonging to the sender which may be confidential and legally privileged. This information is intended only for the use of the individual or entity to whom this electronic mail transmission was sent as indicated above. If you are not the intended recipient, any disclosure, copying, distribution, or action taken in reliance on the contents of the information contained in this transmission is strictly prohibited. If you have received this transmission in error, please delete the message. Thank you



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



Reply via email to