Re: VS: Pipe XSLT Transform to FOP (AND: ABOUT MAIL ARCHIVES)

2002-02-26 Thread Bart Locanthi
Re SAXResult - wonderful! I didn't realize you could do this and had been very bothered by the size of the intermediate xsl:fo goo. I had even gotten to the point of hacking Tomcat and the servlet API to support threading and pipes between tags, only to find that Java pipes are fundamentally fl

VS: Pipe XSLT Transform to FOP (AND: ABOUT MAIL ARCHIVES)

2002-02-26 Thread Joerg Pietschmann
[EMAIL PROTECTED] wrote: > some comments to Joergs message: > I do not think using TraxInputHandler or XSLTInputHandler is > better than using a DOM tree. Just for clarification: i did not recommend temporary files over intermediate DOM trees. I recommend a SAX event stream over any of temporary f

VS: Pipe XSLT Transform to FOP (AND: ABOUT MAIL ARCHIVES)

2002-02-26 Thread Teemu . Talja
: FOP User > Aihe: Re: Pipe XSLT Transform to FOP > > Ryan Howe <[EMAIL PROTECTED]> wrote: > > Could anyone point me in the right direction of how I could transform > > my XML to PDF without creating an intermediate file? > > Look up TraxInputHandler and XSL

Re: Pipe XSLT Transform to FOP

2002-02-12 Thread Joerg Pietschmann
Ryan Howe <[EMAIL PROTECTED]> wrote: > Could anyone point me in the right direction of how I could transform > my XML to PDF without creating an intermediate file? Look up TraxInputHandler and XSLTInputHandler, or Document.getContentHandler() in the FOP documentation or the mailing list archives.

VS: Pipe XSLT Transform to FOP

2002-02-12 Thread Teemu . Talja
[EMAIL PROTECTED] > Lähetetty:12. helmikuuta 2002 3:01 > Vastaanottaja: [EMAIL PROTECTED] > Aihe: Pipe XSLT Transform to FOP > > Hello, > > I have an application which currently will transform a Vector > of Document objects out to HTML files. We would like to

Re: Pipe XSLT Transform to FOP

2002-02-12 Thread Jeremias Maerki
> I have an application which currently will transform a Vector > of Document objects out to HTML files. We would like to be able > to modify this application to allow the process to create PDF files > instead of HTML files. > > I have been looking for a way to pipe the output of my Transformer >

RE: Pipe XSLT Transform to FOP

2002-02-12 Thread Conal Tuohy
ROTECTED] > Sent: Tuesday, 12 February 2002 18:54 > To: FOP user > Subject: Re: Pipe XSLT Transform to FOP > > > On Tuesday 12 February 2002 02:00, Ryan Howe wrote: > > I have been looking for a way to pipe the output of my Transformer > > into the Input of the FOP Driv

Re: Pipe XSLT Transform to FOP

2002-02-12 Thread Bart Locanthi
yah i've looked at cocoon, and sorry to say but i'm not interested. tag extension, which jsp does okay but not great, is what i want to "separate logic from presentation". i can pipe and do even more amazing stuff with cleverly designed tags and a slightly hacked tomcat. i just wish the servlet

Re: Pipe XSLT Transform to FOP

2002-02-12 Thread Bertrand Delacretaz
On Tuesday 12 February 2002 02:00, Ryan Howe wrote: > I have been looking for a way to pipe the output of my Transformer > into the Input of the FOP Driver object. Cocoon (xml.apache.org/cocoon) does just that and much more - you might want to have a look! -- -- Bertrand Delacrétaz, www.codec

Re: Pipe XSLT Transform to FOP

2002-02-12 Thread Bart Locanthi
Could anyone point me in the right direction of how I could transform my XML to PDF without creating an intermediate file? send your XML to a PipedOutputStream pos and use an InputSource(pos.getInputStream()) make your XML thing a Thread and start() it.

Pipe XSLT Transform to FOP

2002-02-12 Thread Ryan Howe
Hello, I have an application which currently will transform a Vector of Document objects out to HTML files. We would like to be able to modify this application to allow the process to create PDF files instead of HTML files. I have been looking for a way to pipe the output of my Transformer into the