save dynamic jsp content

2001-08-01 Thread Mustapha Essalihe
Hi, I am new to struts. In my action class (perform) I want to run a jsp page in background and save its content in an html file. How Can i do that in perfom method ?. After that i know how i will send this html file by e-mail (usinj java smtp) and forward the user to an adequate location (succ

Re: save dynamic jsp content

2001-08-01 Thread Calvin Yu
The easiest way would be to write a client that makes a HTTP request to the server and captures the HTML output that way. Calvin On 01 Aug 2001 13:40:58 -0400, Mustapha Essalihe wrote: > > Hi, > I am new to struts. In my action class (perform) I want to run a jsp page > in background and save

RE: save dynamic jsp content

2001-08-01 Thread Kevin McLain
OException ignored) { } finally { try { is.close(); } catch (IOException ignored) { } } -Original Message- From: Calvin Yu [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 01, 2001 11:07 AM To: [EMAIL PROTECTED] Subject: Re: save d

Re: save dynamic jsp content

2001-08-01 Thread Chris Nokes
rom: "Calvin Yu" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 01, 2001 1:06 PM Subject: Re: save dynamic jsp content The easiest way would be to write a client that makes a HTTP request to the server and captures the HTML output that way. Calvin On 01 Aug 2

Re: save dynamic jsp content

2001-08-01 Thread Calvin Yu
ystem first if desired. This doesn't require an extra network call and > thread. > > Chris > > - Original Message - > From: "Calvin Yu" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Wednesday, August 01, 2001 1:06 PM > Subje

RE: save dynamic jsp content

2001-08-01 Thread Kapila, Ranjit
]] Sent: Wednesday, August 01, 2001 3:45 PM To: [EMAIL PROTECTED] Subject: Re: save dynamic jsp content Fantastic idea! This would be an easier way. Calvin On 01 Aug 2001 14:31:44 -0500, Chris Nokes wrote: > An eaiser way may be to create a BodyTagSupport to capture the output in