RE: XML to PDF(need sample servlet code...)

2003-01-22 Thread shirishchandra . sakhare
: Wednesday, January 22, 2003 12:45 AM To: struts-user Cc: madhavan Subject: [OT}RE: XML to PDF Hi I used Apache FOP and XSLT to convert XML to pdf. Regards Madhavan -Original Message- From: V. Cekvenich [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 2:27 PM To: [EMAIL

RE: XML to PDF(IE problem...)

2003-01-22 Thread shirishchandra . sakhare
PROTECTED]] Sent: Tuesday, January 21, 2003 9:28 PM To: struts-user Subject: RE: XML to PDF I think you can name your action with a .pdf extension, something like http://localhost/xmltopdf.do.pdf. Not sure what you'd have to do with the action mappings to allow this to work. Some versions of IE seem

RE: XML to PDF(need sample servlet code...)

2003-01-22 Thread ROSSEL Olivier
Cocoon distribution comes with samples. One of the samples is a XML-XSL-FO-PDF pipeline. Very easy to setup, very efficient (Cocoon is efficient, FOP is ...). http://xml.apache.org/cocoon This e-mail is intended only for the above addressee. It may contain privileged information. If you are not

RE: XML to PDF(need sample servlet code...)

2003-01-22 Thread Pani, Gourav
i posted sample code on this thread yesterday. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 3:32 AM To: [EMAIL PROTECTED] Subject: RE: XML to PDF(need sample servlet code...) Hi, Do u have any sample code of a servlet that does

RE: XML to PDF(need sample servlet code...)

2003-01-22 Thread Maris Orbidans
: Pani, Gourav [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 3:17 PM To: 'Struts Users Mailing List' Subject: RE: XML to PDF(need sample servlet code...) i posted sample code on this thread yesterday. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

[OT]RE: XML to PDF(need sample servlet code...)

2003-01-22 Thread Madhavan Srinivasan
) { logger.debug(Error:+ex.getMessage()); return null; } } -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 22, 2003 12:32 AM To: [EMAIL PROTECTED] Subject: RE: XML to PDF(need sample

Re: XML to PDF

2003-01-21 Thread Alex
google.com apache.org This has been done numerous times in numerous languages. You should have no problem with it. On Tue, 21 Jan 2003, Yan, Charlene wrote: Hello all, I just got assigned to convert XML to pdf to do reports. Is any of you working on it? Any insights where I should get

RE: XML to PDF

2003-01-21 Thread Raible, Matt
Check out FOP from Apache's XML project: http://xml.apache.org/fop/index.html -Original Message- From: Yan, Charlene [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 1:07 PM To: Struts Users Mailing List Subject: XML to PDF Hello all, I just got assigned to

Re: XML to PDF

2003-01-21 Thread Hemanth Setty
You should check out the FOP project on apache.It is a pretty good transformation tool and works pretty well. http://xml.apache.org/fop/ -hemanth Yan, Charlene wrote: Hello all, I just got assigned to convert XML to pdf to do reports. Is any of you working on it? Any insights where I should

RE: XML to PDF

2003-01-21 Thread srinivas vemuri
Hi Charlene, Check Formatting Objects Processor (FOP) at http://xml.apache.org/fop/. - Srini -Original Message- From: Yan, Charlene [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 12:07 PM To: Struts Users Mailing List Subject: XML to PDF Hello all, I just got assigned to

Re: XML to PDF

2003-01-21 Thread Kevin . Bedell
Have you seen Cacoon? http://xml.apache.org/cocoon/index.html

RE: XML to PDF

2003-01-21 Thread Pani, Gourav
You will need to download the following package from Apache. fop.jar batik.jar avalon.jar Import the following classes into your servlet where you are doing your translation import org.apache.fop.apps.Driver; import org.apache.fop.messaging.MessageHandler; import

RE: XML to PDF

2003-01-21 Thread Jarnot Voytek Contr AU HQ/SC
: Raible, Matt [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 2:12 PM To: 'Struts Users Mailing List' Subject: RE: XML to PDF Check out FOP from Apache's XML project: http://xml.apache.org/fop/index.html -Original Message- From: Yan, Charlene [mailto:[EMAIL PROTECTED]] Sent

RE: XML to PDF

2003-01-21 Thread Jerome Jacobsen
mapping over using the content type set in the HTTP response header. -Original Message- From: Jarnot Voytek Contr AU HQ/SC [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 3:14 PM To: 'Struts Users Mailing List' Subject: RE: XML to PDF Speaking of FOP, has anyone successfully

Re: XML to PDF

2003-01-21 Thread Attila Szegedi
You should check out the FOP project on apache.It is a pretty good transformation tool and works pretty well. Unless you want non ISO-8859-1 characters in your PDF output. (Actually, my experience might be outdated since it's been at least 18 months since I evaluated FOP). The lack of support

RE: XML to PDF

2003-01-21 Thread Durham David Cntr 805CSS/SCBE
Just wanted to add that the license for iText is LGPL. -Original Message- From: Attila Szegedi [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 2:31 PM To: Struts Users Mailing List Subject: Re: XML to PDF You should check out the FOP project on apache.It is a pretty

RE: XML to PDF

2003-01-21 Thread Yan, Charlene
, January 21, 2003 4:08 PM To: Struts Users Mailing List Subject: RE: XML to PDF Just wanted to add that the license for iText is LGPL. -Original Message- From: Attila Szegedi [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 2:31 PM To: Struts Users Mailing List Subject: Re

RE: XML to PDF

2003-01-21 Thread Pani, Gourav
To: Struts Users Mailing List Subject: RE: XML to PDF Thank you all for your information. I was told to take a look at http://www.rrsys.com/. We are going to buy the tool from Root River because someone here has experience with it. Charlene -Original Message- From: Durham David Cntr 805CSS

Re: XML to PDF

2003-01-21 Thread V. Cekvenich
Yet another alternative: JasperReports and iText. Yan, Charlene wrote: Hello all, I just got assigned to convert XML to pdf to do reports. Is any of you working on it? Any insights where I should get started my research? I am looking at xmlmil and aparche xml home right now. Thanks in

[OT}RE: XML to PDF

2003-01-21 Thread Madhavan Srinivasan
Hi I used Apache FOP and XSLT to convert XML to pdf. Regards Madhavan -Original Message- From: V. Cekvenich [mailto:[EMAIL PROTECTED]] Sent: Tuesday, January 21, 2003 2:27 PM To: [EMAIL PROTECTED] Subject: Re: XML to PDF Yet another alternative: JasperReports and iText. Yan, Charlene

RE: XML to PDF

2003-01-21 Thread MerrilG
] LL.AF.MIL cc: Subject: RE: XML to PDF 01/22/03 01:44 AM