PDF in a JSP ... searching alternative way

2002-06-20 Thread Massimiliano Cuccia
I want to produce a pdf in a jsp, so I have a string fo that contains the fo instructions ... I had found this code to output the pdf directily in the browser Driver driver = new Driver(new InputSource(new StringBufferInputStream(fo)), response.getOutputStream()); and it's OK, there is

Re: PDF in a JSP ... searching alternative way

2002-06-20 Thread Holger Prause
- Original Message - From: Massimiliano Cuccia [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, June 20, 2002 6:48 PM Subject: PDF in a JSP ... searching alternative way I want to produce a pdf in a jsp, so I have a string fo that contains the fo instructions ... I had found

RE: PDF in a JSP ... searching alternative way

2002-06-20 Thread Sergei Timofejev
().write(content); xmlfo_input.close(); response.getOutputStream().flush(); -Original Message- From: Massimiliano Cuccia [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 20, 2002 7:48 PM To: [EMAIL PROTECTED] Subject: PDF in a JSP ... searching alternative way I want to produce a pdf

Re: PDF in a JSP ... searching alternative way

2002-06-20 Thread J.Pietschmann
Massimiliano Cuccia wrote: I want to produce a pdf in a jsp, so I have a string fo that contains the fo instructions ... I had found this code to output the pdf directily in the browser Driver driver = new Driver(new InputSource(new StringBufferInputStream(fo)),