Re: How to access in ActionClass

2006-09-08 Thread leo mj
robert, I guess you are mentioning the way to access ApplicationResources.properties... Correct me if i am wrong... Or is it a way to access struts-config.xml elements??? Regards, Leo Robert Harrison <[EMAIL PROTECTED]> wrote: Leo, Hope I understood the question. If so, th

Re: How to access in ActionClass

2006-09-08 Thread Robert Harrison
Leo, Hope I understood the question. If so, this: ResourceBundle resource = ResourceBundle.getBundle ("nameOfYourResourceBundle"); You can then access the bundle using its keys: Properties properties = new Properties(); properties.put("yourVariableName",resource.getString("bundleKey")); Bob On

How to access in ActionClass

2006-09-08 Thread leo mj
hi all, Anyone knows how to access parameter in struts-config.xml through Action class??? other than using XML reader class.is there any feature in struts framework to do so That is i need to modify the parameter value based on some logic in Action class. Regards, Leo