Re: Hello ! Can I generate PDFs and XLS through a document object and Cocoon ?

2003-09-22 Thread jonathan wong
Dear Joerg , Hello ! I am pleased to have your nice help . Can I use any PDF Serializer other than itext in Cocoon 2.1 ? Can I still use a standard XML with XSL FO ? Thank you ! --- Joerg Heinicke [EMAIL PROTECTED] wrote: No, in Cocoon 2.1 you can also use itext to produce PDF, but this

Re: Hello ! Can I generate PDFs and XLS through a document object and Cocoon ?

2003-09-21 Thread jonathan wong
Dear All , Hello ! Thank you for your reply ! I just downloaded struts-cocoon-2.0 which use Cocoon 2.1M2 . Does Cocoon only use XSL-FO to generate PDF ? Can I use Gnumeric file format to generate PDF ? ( hehe .. , if so , I can only use one XSLT to generate 2 format files ) If I use

Re: Hello ! Can I generate PDFs and XLS through a document object and Cocoon ?

2003-09-21 Thread Joerg Heinicke
No, in Cocoon 2.1 you can also use itext to produce PDF, but this needs another XML structure and this one is no standard. So I prefer the XSL Fo way even this is a bit complex. I don't know of any Gnumeric2PDF processor. The two file formats are also for different purposes, so I guess there

Re: Hello ! Can I generate PDFs and XLS through a document object and Cocoon ?

2003-09-19 Thread Yury Mikhienko
Abuout the Xreporter you can find on http://xreporter.cocoondev.org/index.html Hello ! Does xreporter is samilar to Cocoon ? I can't search any tutorial of it ! Thank you ! What about using the cocoon xreporter? Hi Jonathon If you already have a class which generates a JDOM

Re: Hello ! Can I generate PDFs and XLS through a document object and Cocoon ?

2003-09-18 Thread Joerg Heinicke
Yes, should be possible by writing your own simple generator. Where do you get the JDOM object from? Joerg jonathan wong wrote: Dear All , Hello ! I am a beginner of Cocoon . I find Cocoon can generate XLSs and PDFs through a pair of XML and XSLT . However , can I generate XLSs and PDFs

Re: Hello ! Can I generate PDFs and XLS through a document object and Cocoon ?

2003-09-18 Thread jonathan wong
Dear Joerg , Hello ! I am so pleased to hear it is possible . I want to design my application as : 1. some data are stored in a database 2. a class gets a resultset and create a JDOM document object . 3. the class fit the database data to the document object . 4. how can I match the JDOM

Re: Hello ! Can I generate PDFs and XLS through a document object and Cocoon ?

2003-09-18 Thread Yury Mikhienko
What about using the cocoon xreporter? Hi Jonathon If you already have a class which generates a JDOM object, you could refer to it in an XSP (this is probably the easiest way), or write a Transformer that wraps the JDOM object and serializes it as SAX. Or, if you don't already have