RE: Using a servlet code within Struts

2004-06-17 Thread Paul McCulloch
ies 3) Create a jsp (based on the html output from the original servlet) which used the request scope attributes for the dynamic content. Paul > -Original Message- > From: Ricardo Andres Quintero [mailto:[EMAIL PROTECTED] > Sent: 16 June 2004 17:28 > To: [EMAIL PROTECTED]

RE: Using a servlet code within Struts

2004-06-16 Thread Pingili, Madhupal
Message- > From: Amleto Di Salle [SMTP:[EMAIL PROTECTED] > Sent: Wednesday, June 16, 2004 1:35 PM > To: 'Struts Users Mailing List' > Subject: R: Using a servlet code within Struts > > Hi, > you can return null inside the Action as ActionForward. > In this c

RE: Using a servlet code within Struts

2004-06-16 Thread mike
: Using a servlet code within Struts Hello everyone I want to make some servlet code to work in Struts. i dont want to make the servlet to work. i want to rewrite the code into Struts. The servlet uses out = response.getOutputStream() and then out.write(); I know Struts uses the model 2, so that the

R: Using a servlet code within Struts

2004-06-16 Thread Amleto Di Salle
ing a servlet code within Struts Hello everyone I want to make some servlet code to work in Struts. i dont want to make the servlet to work. i want to rewrite the code into Struts. The servlet uses out = response.getOutputStream() and then out.write(); I know Struts uses the model 2, so that the vi

RE: Using a servlet code within Struts

2004-06-16 Thread Kommana, Sridhar
Look at it here: http://www.jguru.com/faq/view.jsp?EID=531024 -Original Message- From: Ricardo Andres Quintero [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 16, 2004 11:28 AM To: [EMAIL PROTECTED] Subject: Using a servlet code within Struts Hello everyone I want to make some servlet

Using a servlet code within Struts

2004-06-16 Thread Ricardo Andres Quintero
Hello everyone I want to make some servlet code to work in Struts. i dont want to make the servlet to work. i want to rewrite the code into Struts. The servlet uses out = response.getOutputStream() and then out.write(); I know Struts uses the model 2, so that the view is a jsp. Im thinking of u