RE: Urgent: generating PDF from form data

2003-08-14 Thread Edgar Dollin
Have you looked at iText?  Another one to try is JasperReports (Jasper uses
iText) but also uses POI to optionally generate XLS or HTML.

Edgar

> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
> Sent: Wednesday, August 13, 2003 1:33 PM
> To: '[EMAIL PROTECTED]'
> Subject: RE: Urgent: generating PDF from form data
> 
> 
> What is FOP? I am a newbie in struts
> 
> --mohan
> 
> 
> > Have you looked at FOP?
> >
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, August 13, 2003 1:16 PM
> > To: [EMAIL PROTECTED]
> > Subject: Urgent: generating PDF from form data
> >
> >
> > Hi All
> > I use struts. I wanted to know if there is a we can generate a PDF 
> > with the form data the user submits so that the users can print the 
> > pages. Please let me know if there is any resource on it or 
> if there 
> > is something related to it.
> >
> >
> > Thanks in Advance
> >
> > --Mohan
> >
> >
> >
> > 
> - 
> > To unsubscribe, e-mail: 
> [EMAIL PROTECTED] For 
> > additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
> >
> > 
> - 
> > To unsubscribe, e-mail: 
> [EMAIL PROTECTED] For 
> > additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
> 
> 

-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Urgent: generating PDF from form data

2003-08-14 Thread Graham Stark
Mohan,

You could try try FOP, if you were prepared to manipulate your data into
XML first.

See: xml.apache.org/fop

Graham


> Hi All
> I use struts. I wanted to know if there is a we can generate a PDF with
> the form data the user submits so that the users can print the pages.
> Please let me know if there is any resource on it or if there is something
> related to it.
> 
> 
> Thanks in Advance
> 
> --Mohan
> 
> 
> 
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
-- 
Graham Stark, Virtual Worlds
phone: (+044) 01908 618239 mobile: 07952 633185
Homepage http://www.virtual-worlds.biz
Virtual Learning Arcade http://www.bized.ac.uk/virtual/vla
Virtual Economy http://www.bized.ac.uk/virtual/economy 


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



Re: Urgent: generating PDF from form data

2003-08-14 Thread David Erickson
http://xml.apache.org/fop
works great, but you need to generate an XML document with your users info
then transform that with an XSLT sheet containing FO information.

- Original Message - 
From: <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Wednesday, August 13, 2003 12:32 PM
Subject: RE: Urgent: generating PDF from form data


> What is FOP? I am a newbie in struts
>
> --mohan
>
>
> > Have you looked at FOP?
> >
> > -Original Message-
> > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> > Sent: Wednesday, August 13, 2003 1:16 PM
> > To: [EMAIL PROTECTED]
> > Subject: Urgent: generating PDF from form data
> >
> >
> > Hi All
> > I use struts. I wanted to know if there is a we can generate a PDF with
> > the form data the user submits so that the users can print the pages.
> > Please let me know if there is any resource on it or if there is
> > something related to it.
> >
> >
> > Thanks in Advance
> >
> > --Mohan
> >
> >
> >
> > - To
> > unsubscribe, e-mail: [EMAIL PROTECTED] For
> > additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
> >
> > - To
> > unsubscribe, e-mail: [EMAIL PROTECTED] For
> > additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
>


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Urgent: generating PDF from form data

2003-08-14 Thread Mike Jasnowski
Have you looked at FOP?

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 13, 2003 1:16 PM
To: [EMAIL PROTECTED]
Subject: Urgent: generating PDF from form data


Hi All
I use struts. I wanted to know if there is a we can generate a PDF with
the form data the user submits so that the users can print the pages.
Please let me know if there is any resource on it or if there is something
related to it.


Thanks in Advance

--Mohan



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Urgent: generating PDF from form data

2003-08-14 Thread mohan
What is FOP? I am a newbie in struts

--mohan


> Have you looked at FOP?
>
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, August 13, 2003 1:16 PM
> To: [EMAIL PROTECTED]
> Subject: Urgent: generating PDF from form data
>
>
> Hi All
> I use struts. I wanted to know if there is a we can generate a PDF with
> the form data the user submits so that the users can print the pages.
> Please let me know if there is any resource on it or if there is
> something related to it.
>
>
> Thanks in Advance
>
> --Mohan
>
>
>
> - To
> unsubscribe, e-mail: [EMAIL PROTECTED] For
> additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
> - To
> unsubscribe, e-mail: [EMAIL PROTECTED] For
> additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Urgent: generating PDF from form data

2003-08-14 Thread Mike Jasnowski
Someone wrote something called DOMify, can't recall who, but it will XMLify
a JavaBean or perhaps graph of JavaBeans. If you search the net on DOMify
(Maybe Maverick does this).

-Original Message-
From: Graham Stark [mailto:[EMAIL PROTECTED]
Sent: Wednesday, August 13, 2003 2:50 PM
To: [EMAIL PROTECTED]
Subject: Re: Urgent: generating PDF from form data


Mohan,

You could try try FOP, if you were prepared to manipulate your data into
XML first.

See: xml.apache.org/fop

Graham


> Hi All
> I use struts. I wanted to know if there is a we can generate a PDF with
> the form data the user submits so that the users can print the pages.
> Please let me know if there is any resource on it or if there is something
> related to it.
>
>
> Thanks in Advance
>
> --Mohan
>
>
>
> -
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
>
--
Graham Stark, Virtual Worlds
phone: (+044) 01908 618239 mobile: 07952 633185
Homepage http://www.virtual-worlds.biz
Virtual Learning Arcade http://www.bized.ac.uk/virtual/vla
Virtual Economy http://www.bized.ac.uk/virtual/economy


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Urgent: generating PDF from form data

2003-08-14 Thread Peter Abbot
I have used FOP to generate PDF within struts and it works great.

In the beginning to save to with dealing with the formatting of the PDF
document I used FOP to translate genereate web pages into PDF. 

The only thing is that your generated webpage needs to be in xhtml
format. If using the struts html tags you will need to specify
 so the page gets generated properly.

If you want I can send you the xsl stylesheet for translating the xhtml
in creating the pdf document.

Pete

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 14 August 2003 6:33 a.m.
To: [EMAIL PROTECTED]
Subject: RE: Urgent: generating PDF from form data


What is FOP? I am a newbie in struts

--mohan


> Have you looked at FOP?
>
> -Original Message-
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]
> Sent: Wednesday, August 13, 2003 1:16 PM
> To: [EMAIL PROTECTED]
> Subject: Urgent: generating PDF from form data
>
>
> Hi All
> I use struts. I wanted to know if there is a we can generate a PDF 
> with the form data the user submits so that the users can print the 
> pages. Please let me know if there is any resource on it or if there 
> is something related to it.
>
>
> Thanks in Advance
>
> --Mohan
>
>
>
> - 
> To unsubscribe, e-mail: [EMAIL PROTECTED] For

> additional commands, e-mail: [EMAIL PROTECTED]
>
>
>
> - 
> To unsubscribe, e-mail: [EMAIL PROTECTED] For

> additional commands, e-mail: [EMAIL PROTECTED]




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]



RE: Urgent: generating PDF from form data

2003-08-14 Thread Greg Ludington
>
Hi All
I use struts. I wanted to know if there is a we can generate a PDF with
the form data the user submits so that the users can print the pages.
Please let me know if there is any resource on it or if there is
something related to it.
<

You may wish to look into these two open source projects, depending on
your specific needs.

FOP, Apache's Formatting Output Processor - http://xml.apache.org/fop/
iText, a java-pdf library - http://sourceforge.net/projects/itext/

Greg Ludington




-
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]