Re: Getting handle on application property file in Action class.

2006-01-31 Thread Hubert Rabago
ase respond to "Struts Users Mailing List" > > > To: Struts Users Mailing List > cc: > Subject:Re: Getting handle on application property file in > Action class. > > > Try something like: > > String propertyValue = getResou

Re: Getting handle on application property file in Action class.

2006-01-31 Thread digant . k . joshi
9 AM Please respond to "Struts Users Mailing List" To: Struts Users Mailing List cc: Subject: Re: Getting handle on application property file in Action class. Try something like: String propertyValue = getResources(request).getMessage("propertyN

Re: Getting handle on application property file in Action class.

2006-01-31 Thread Hubert Rabago
Try something like: String propertyValue = getResources(request).getMessage("propertyName"); Hubert On 1/30/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Is there a way to get handle on Application property file handle in action > class. > What I mean is if I specify in struts-config.xml >

Getting handle on application property file in Action class.

2006-01-30 Thread digant . k . joshi
Is there a way to get handle on Application property file handle in action class. What I mean is if I specify in struts-config.xml and drop my DICE.properties file in WEB-INF/classes directory Shouldn't I be able to read this property file from my DAO class which is called from within Dispatch