Re: Re: writting File through jsp

2005-09-06 Thread Frank W. Zammetti
A filter can be used to both pre-process a request and post-process it, so it *could* do what your after. But, I would start by questioning whether what your trying to do is really required... keep in mind that writing to the file system from a J2EE app is forbidden (not that it stops anyone from

Re: Re: writting File through jsp

2005-09-06 Thread d d
I guess u r right i must try this out.. But i am doubtful if the pdf to be grnerated will be fully generated when we enter in Filter or will it get generated AFTER passing through Filter?? On Tue, 06 Sep 2005 [EMAIL PROTECTED] wrote : >On Tue, 2005-09-06 at 06:19 +, d d wrote: > > Using

Re: writting File through jsp

2005-09-06 Thread amos
On Tue, 2005-09-06 at 06:19 +, d d wrote: > Using FO i am generating a pdf report. > The code for this is in a JSP (which is obviously generated dynamically). > Now i want to save a copy of this generated pdf on server. > Any idea how this can be done?? Just guessing but if I understand you

writting File through jsp

2005-09-05 Thread d d
Using FO i am generating a pdf report. The code for this is in a JSP (which is obviously generated dynamically). Now i want to save a copy of this generated pdf on server. Any idea how this can be done??