Re: Problem in Action Class

2003-01-24 Thread Wayne Fuller
Uday wrote: Hi, I have one action class which extends org.apache.struts.action.Action. I have one more action class and its ActionForm class. From the first action class i want to invoke method of second ActionForm class. How do i get the reference of second ActionForm class from the first

RE: Problem in Action Class

2003-01-24 Thread Uday
[mailto:[EMAIL PROTECTED]] Sent: Friday, January 24, 2003 5:50 PM To: Struts Users Mailing List Subject: Re: Problem in Action Class Uday wrote: Hi, I have one action class which extends org.apache.struts.action.Action. I have one more action class and its ActionForm class. From the first action

Re: Problem in Action Class

2003-01-24 Thread Jeremy Cavagnolo
Uday: One way to solve your problem would be to create the ActionForm instance in the first Action, call the method on this new instance, then add the ActionForm instance to your request (or session, depending on how you set things up in the struts-config file) with the appropriate key. Then the

Problem in Action Class

2003-01-23 Thread Uday
Hi, I have one action class which extends org.apache.struts.action.Action. I have one more action class and its ActionForm class. From the first action class i want to invoke method of second ActionForm class. How do i get the reference of second ActionForm class from the first Action class.