Re: chaining actions i think!!

2005-10-10 Thread Tamas Szabo
Hi! To show the record that has been edited I am making another trip to the > DB as I don't have a cache. To return back to the results the user > clicks on his button and is forwarded to the edit Action class. It is > from this action class that I want to call the search Action class > passing in

RE: chaining actions i think!!

2005-10-05 Thread Frank W. Zammetti
the actionForm I can pass my form which I hold in the session. > > > > -Original Message- > From: Martin Gainty [mailto:[EMAIL PROTECTED] > Sent: 05 October 2005 15:17 > To: Shoukat,F,Faisal,JPGA8Y C > Cc: user@struts.apache.org > Subject: Re: chaining actions

RE: chaining actions i think!!

2005-10-05 Thread faisal.shoukat
. -Original Message- From: Martin Gainty [mailto:[EMAIL PROTECTED] Sent: 05 October 2005 15:17 To: Shoukat,F,Faisal,JPGA8Y C Cc: user@struts.apache.org Subject: Re: chaining actions i think!! I am unsure if you want to chain actions as this would not conform to Action1->ActionForward1 where

Re: chaining actions i think!!

2005-10-05 Thread Martin Gainty
ion(); session.setAttribute("username", username); test for presence of session.getAttribute("username") and result if not null prepopulate your form with the value Anyone else ? Martin- - Original Message - From: <[EMAIL PROTECTED]> To: Sent: Wednesday, October 05, 2005 6:47

RE: chaining actions i think!!

2005-10-05 Thread Frank W. Zammetti
intainablitity and the way my application is written I have multiple > action classes. > > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: 05 October 2005 11:57 > To: Struts Users Mailing List > Cc: user@struts.apache.org > Subject: Re: c

RE: chaining actions i think!!

2005-10-05 Thread faisal.shoukat
ECTED] Sent: 05 October 2005 11:57 To: Struts Users Mailing List Cc: user@struts.apache.org Subject: Re: chaining actions i think!! Faisal, Why are you making different action classes for Search and Edit functionality. You can have these method in one Action class itself and then you can call the &#

Re: chaining actions i think!!

2005-10-05 Thread Sunil_Sahu
t how to do it, let me know. Sunil <[EMAIL PROTECTED]> 05/10/2005 16:17 Please respond to "Struts Users Mailing List" To cc Subject chaining actions i think!! Hi, Is there a way that I can call another action from within a action class. Is it as simple as just cal

chaining actions i think!!

2005-10-05 Thread faisal.shoukat
Hi, Is there a way that I can call another action from within a action class. Is it as simple as just calling the execute method of the other action or another method of the action class as is required.? My scenario is as follows: A user searches on a client and is returned a number of results