RE: forwarding to another action ..

2003-02-14 Thread Sri Sankaran
You haven't given enough information below (seems like a continuation of some previous thread). I *think* what you are trying to do is go forward from one action to another [*] but before so doing removing a attribute from the request. If so, some obvious checks would be - ensure that the

RE: forwarding to another action ..

2003-02-14 Thread Sundar Narasimhan
From: Sri Sankaran [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] You haven't given enough information below (seems like a continuation of = some previous thread). I *think* what you are trying to do is go forward from one action to = another [*] but before so doing removing a

RE: forwarding to another action ..

2003-02-14 Thread Sri Sankaran
Disclaimer:Not knowing your application I realize that the following may be prescribing something you are already doing. I wonder if you can avoid some of the problems you are having with re-entrant pages by using lightweight action classes. Say you have business services to - retrieve

RE: forwarding to another action

2001-08-22 Thread Allamsetty, Venkata
from with in the perform method of an action class, call mapping.forward('success'); define the forward tag for 'success' in struts_config.xml -va -Original Message- From: Jan Fredrik Overaasen [mailto:[EMAIL PROTECTED]] Sent: Tuesday, August 21, 2001 7:29 AM To: '[EMAIL PROTECTED]'

Re: forwarding to another action

2001-08-21 Thread Craig R. McClanahan
Create a forward declaration whose path is another Action's URL. In this way you can chain actions together: forward name=Next Step path=/nextstep.do/ (assuming you are using extension mapping for *.do in the usual way). Craig On Tue, 21 Aug 2001, Jan Fredrik Overaasen wrote: Hi I