RequestProcessor.processPopulate happens more than once when one Struts action forwards to another

2003-06-03 Thread Ahearn, Denis
Hi, When one Struts action forwards to another Struts action, and the first action was invoked by a form post, is it correct behavior that the RequestProcessor.processPopulate method is called when the second action is processed? It seems to me that the form should only be populated from the

Problems subclassing FormBeanConfig

2002-12-03 Thread Ahearn, Denis
I ran into a problem trying to subclass org.apache.struts.config.FormBeanConfig. Here is essentially what I was trying: form-bean name=myForm dynamic=true type=org.apache.struts.action.DynaActionForm className=mycompany.MyFormBeanConfig . . . /form-bean public class MyFormBeanConfig extends

RE: Tiles newbie

2002-11-21 Thread Ahearn, Denis
I have never tried it, but this website implies that Tiles can run without Struts http://www.lifl.fr/~dumoulin/tiles/ -Original Message- From: Brian Hickey [mailto:[EMAIL PROTECTED]] Sent: Thursday, November 21, 2002 10:21 AM To: Struts Users Mailing List Subject: Tiles newbie A

Error Cannot find message resources under key ui when attempting to subclass FormBeanConfig in struts-config.xml

2002-11-21 Thread Ahearn, Denis
Has anyone successfully subclassed the FormBeanConfig associated with a form-bean element? For example: form-bean name=myForm type=org.apache.struts.action.DynaActionForm className=mypackage.MyFormBeanConfig . . . /form-bean When I try this, I get the following

RE: Error Cannot find message resources under key ui when attempting to subclass FormBeanConfig in struts-config.xml

2002-11-21 Thread Ahearn, Denis
post your Dyna extension? -- James Mitchell Software Engineer/Struts Evangelist http://www.open-tools.org If you were plowing a field, which would you rather use? Two strong oxen or 1024 chickens? - Seymour Cray (1925-1996), father of supercomputing -Original Message- From: Ahearn

RE: Error Cannot find message resources under key ui when attempting to subclass FormBeanConfig in struts-config.xml

2002-11-21 Thread Ahearn, Denis
. -- James Mitchell Software Engineer/Struts Evangelist http://www.open-tools.org If you were plowing a field, which would you rather use? Two strong oxen or 1024 chickens? - Seymour Cray (1925-1996), father of supercomputing -Original Message- From: Ahearn, Denis [mailto:[EMAIL PROTECTED

Problem using nested property names with DynaActionForm - Should Struts support this?

2002-11-20 Thread Ahearn, Denis
Hi, I am trying to use a nested property with a DynaActionForm, as shown below: form-bean name=personForm dynamic=true type=type=org.apache.struts.action.DynaActionForm form-property name=address.zipCode type=java.lang.String/ /form-bean In my JSP file, I use the