RE: Itext - PDF from struts

2002-02-22 Thread Arun_Kumar_N
Hello, I am making use of Itext.jar to generate PDF files in Broadvision6.0 using JSP. I am able to generate PDF file,but I am not able to write the image in the generate PDF file. Please look into this Rregards Arun -- To unsubscribe, e-mail: mailto:[EMAIL PROTECTED] For additional

Re: Itext - PDF from struts

2002-02-15 Thread John M. Corro
Unless performance is of major concern, I'd recommend fop over iText...I personally don't really care for iText. I'd recommend only collecting any necessary info in the ActionForm...I wouldn't do any business processing in there. Rather take that info you collected in the ActionForm and

Re: Itext - PDF from struts

2002-02-15 Thread John Ng
John, What do we return as the ActionForward in the perform method if we were to put the pdf stream in the response object? Thanks John --- John M. Corro [EMAIL PROTECTED] wrote: Unless performance is of major concern, I'd recommend fop over iText...I personally don't really care for

Re: Itext - PDF from struts

2002-02-15 Thread John M. Corro
Ng [EMAIL PROTECTED] To: Struts Users Mailing List [EMAIL PROTECTED] Sent: Friday, February 15, 2002 2:47 PM Subject: Re: Itext - PDF from struts John, What do we return as the ActionForward in the perform method if we were to put the pdf stream in the response object? Thanks John

RE: Itext - PDF from struts

2002-02-15 Thread Cakalic, James
And then return null as the ActionForward to indicate that there is nothing more to do. -Original Message- From: John M. Corro [mailto:[EMAIL PROTECTED]] Sent: Friday, February 15, 2002 3:09 PM To: Struts Users Mailing List Subject: Re: Itext - PDF from struts In our case we

RE: Itext - PDF from struts

2002-02-15 Thread Eiring Tim
/15/02 03:13PM And then return null as the ActionForward to indicate that there is nothing more to do. -Original Message- From: John M. Corro [mailto:[EMAIL PROTECTED]] Sent: Friday, February 15, 2002 3:09 PM To: Struts Users Mailing List Subject: Re: Itext - PDF from struts

RE: Itext - PDF from struts

2002-02-15 Thread Arun_Kumar_N
Hello, This code works very well in I.E Netscape. I am making use of iText.jar for generating PDf file. public class PDF extends Action { public ActionForward perform(ActionMapping mapping, ActionForm form,HttpServletRequest request,HttpServletResponse response) throws IOException,