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: For additional

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,

RE: Itext -> PDF from struts

2002-02-15 Thread Eiring Tim
.flush(); > > - Original Message - > From: "John 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,

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 str

Re: Itext -> PDF from struts

2002-02-15 Thread John M. Corro
st" <[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 > J

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

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 referenc