how to forward from one action servlet to another?

2001-05-10 Thread Alex Colic
Hi, how do you forward from one action servlet to another? I have a form that gets submitted to a servlet that I may depending on a value pass it off to another servlet to process. Any help is appreciated. Alex ext. 104 Fax: 1-905-777-0132

Re: how to forward from one action servlet to another?

2001-05-10 Thread John Raley
You could either define a forward for this action in struts-config.xml, or construct a new ActionForward on the fly. Alex Colic wrote: Hi, how do you forward from one action servlet to another? I have a form that gets submitted to a servlet that I may depending on a value pass it off to

RE: how to forward from one action servlet to another?

2001-05-10 Thread Nanduri, Amarnath
Subject: how to forward from one action servlet to another? Hi, how do you forward from one action servlet to another? I have a form that gets submitted to a servlet that I may depending on a value pass it off to another servlet to process. Any help is appreciated. Alex ext. 104 Fax: 1-905-777

Re: how to forward from one action servlet to another?

2001-05-10 Thread dhay
: how to forward from one action servlet to another? Hi, how do you forward from one action servlet to another? I have a form that gets submitted to a servlet that I may depending on a value pass it off to another servlet to process. Any help is appreciated. Alex ext. 104 Fax: 1-905-777

RE: how to forward from one action servlet to another?

2001-05-10 Thread Rajan Gupta
(request,response) ; } } -Original Message- From: Alex Colic [mailto:[EMAIL PROTECTED]] Sent: Thursday, May 10, 2001 2:29 PM To: Struts Subject: how to forward from one action servlet to another? Hi, how do you forward from one action servlet to another? I have a form

RE: how to forward from one action servlet to another?

2001-05-10 Thread Nanduri, Amarnath
To: [EMAIL PROTECTED] Subject: RE: how to forward from one action servlet to another? Will this not keep the thread of ActionServlet which invoked perform() method hanging? --- Nanduri, Amarnath [EMAIL PROTECTED] wrote: If you are using just Struts, then you have only one servlet, the ActionServlet