Re: Creating your own ActionForm inside of an Action

2001-10-24 Thread Sandeep Takhar
Here is something I pulled from the archive and the latest discussion seem to indicate that this is how it works: 1. Controller receives request. 2. Controller looks up mapping for Action and what ActionForm to use. 3. Reset is invoked on the bean. N.B. The instance of the ActionForm either al

Re: Creating your own ActionForm inside of an Action

2001-10-24 Thread Ted Husted
The ActionServlet creates the ActionForm bean in the processActionForm method, and populates it in the processPopulate method. See the source code for details. Though, I don't understand why you don't let the controller do this for you, by specifying the name of the ActionForm bean in the Action

Re: Creating your own ActionForm inside of an Action

2001-10-24 Thread John Yu
At 05:58 pm 23-10-2001 -0700, you wrote: Hi everyone, I have a situation in which I would like to do the following: 1) I'm at a jsp page, let's call it "a.jsp".  It has one link that looks like: Customer 2) My mainMenu action in struts-config.xml looks like (name="..." is left o

RE: Creating your own ActionForm inside of an Action

2001-10-24 Thread Alexander Jesse
Jesse -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, October 24, 2001 2:59 AM To: [EMAIL PROTECTED] Subject: Creating your own ActionForm inside of an Action Hi everyone, I have a situation in which I would like to do the following: 1) I'm at a

Creating your own ActionForm inside of an Action

2001-10-23 Thread Tony Li
Hi everyone, I have a situation in which I would like to do the following: 1) I'm at a jsp page, let's call it "a.jsp". It has one link that looks like: Customer 2) My mainMenu action in struts-config.xml looks like (name="..." is left out on purpose):