In my web.xml, I'm loading the properties file (RSVPResources) using the
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>RSVPResources</param-value>
</init-param>
<load-on-startup>2</load-on-startup>
</servlet>

I'd like to retrieve the property values without using a Properties object
and reloading the properties file (.load). I thought this could be done
using the ActionErrors class. Has anyone done this?

Thanks,

John F.


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

Reply via email to