Re: New FOP release?

2002-05-15 Thread L Rutker
Sadly this is the reason the project I was with dumped FOP in favor of a proprietary pdf output solution, one that is sadly very inferior to FOP in capibilities and standards (no its not renderx but an other reporting package that has PDF output. I had another phone call with a major

Re: New FOP release?

2002-05-15 Thread Patrick Lanphier
It's OK to mention names. We like to know what people are using. Patrick Lanphier The Artemis Group http://www.artemisgroup.com phone: 814-235-0444 fax: 800-582-9710 On Wed, 15 May 2002, L Rutker wrote: Sadly this is the reason the project I was with dumped FOP in favor of a proprietary

Re: Re: Acrobat pictograms and document summary

2002-05-15 Thread jens
Thanks a lot! We'll try it. J.Pietschmann [EMAIL PROTECTED] schrieb am 14.05.2002, 21:06:02: [EMAIL PROTECTED] wrote: Another problem is the document summary of the Acrobat Reader. How can I fill in these fields? You can postprocess the PDF generated by FOP with another tool, like iText

Re: AWT renderer

2002-05-15 Thread MARTIN Franck
Get the FOP source distribution and look into org/apache/fop/apps/AWTStarter.java and whatever catches your eye in this package. I did just that and it helped a bit. I executed the followind code : String[] clo = {-d,-awt,-xml,this.nomFichierXML,-xsl,this.nomFichierXSL}; try {

RE: Re: Acrobat pictograms and document summary

2002-05-15 Thread Wim Sandra
The problem that I ran into with postprocessing the generated PDF file with iText, is the following: iText does not copy the full contents of the pdf file in postprocessing! For instance, I used the fox extensions in order to have outlines/bookmarks in the pdf file. These were left out by

Newbie - render problem

2002-05-15 Thread benjamin rasmussen
Can anyone explain why the following code does not work?! Code: FileInputStream file = new FileInputStream(simple.fo); javax.xml.parsers.DocumentBuilderFactory docBuilderFac = javax.xml.parsers.DocumentBuilderFactory.newInstance(); DocumentBuilder docBuilder =

Newbie: Error trying to convert (standalone) the simple.fo exampl e after first installation...

2002-05-15 Thread Gilson Nascimento D Elrei
Hello all, I have donwloaded and installed FOP, i tried to convert the simple.fo file using it like my first interaction with this tool, but i'm receiving this follow message error: [ERROR]: Don't know what to do with I have entered this lines on DOS Prompt of root FOP directory: FOP

RE: Newbie - render problem

2002-05-15 Thread Jack Donohue
Hi Benjamin. Try this instead: Driver driver = new Driver(); driver.setOutputStream(new FileOutputStream(simple.pdf)); driver.setRenderer(Driver.RENDER_PDF); driver.render(doc); // driver.run(); Jack. -Original Message- From: benjamin rasmussen

RE: Re: Acrobat pictograms and document summary

2002-05-15 Thread Anil R. Pinto
Does this tool actually allow changes to the PDF after it has been created ? You mentioned postprocess the PDF generated by FOP, so I was just curious. If it does that is great. But, does FOP not allow (or rather will it not support these) document summary features even in the future

PDF doesn't show in ie over https

2002-05-15 Thread Katiyar, Bhawana
Hi! I generate PDFs using Fop. All PDF docs are displyed with IE 5.5, Netscape 6 over HTTP. When i switch it to HTTPS, Netscape works fine but IE gives the following error : Internet Explorer cannot downloadInternet Explorer was not able to open this Internet site. The requested site

RE: Newbie - render problem

2002-05-15 Thread benjamin rasmussen
Hi Jack I came a little further in the process. But... I am still getting an exception. Output from the screen: [ERROR]: Logger not set [INFO]: building formatting object tree [ERROR]: Unknown formatting object null^null java.lang.NullPointerException I think it is: driver.render(doc); that

RE: PDF doesn't show in ie over https

2002-05-15 Thread Katiyar, Bhawana
Yes, I have tried static pdf files via https in IE. works fine. B -Original Message- From: Oleg Tkachenko [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 15, 2002 2:48 PM To: [EMAIL PROTECTED] Subject: Re: PDF doesn't show in ie over https Katiyar, Bhawana wrote: I generate PDFs using

Re: Newbie - render problem

2002-05-15 Thread Oleg Tkachenko
benjamin rasmussen wrote: I came a little further in the process. But... I am still getting an exception. Output from the screen: [ERROR]: Logger not set [INFO]: building formatting object tree [ERROR]: Unknown formatting object null^null java.lang.NullPointerException I think it is:

Border a row?

2002-05-15 Thread joseph berdat
Hello, I'm trying to border a row in a table by using following properties : fo:table-row border-color=silver border-width=0.5mm border-style=solid fo:table-cell fo:blockN/A/fo:block /fo:table-cell ... /fo:table-row But, It doesn't work ? What I miss?

Re: Border a row?

2002-05-15 Thread Ralf Steppacher
I'm trying to border a row in a table by using following properties : fo:table-row border-color=silver border-width=0.5mm border-style=solid fo:table-cell fo:blockN/A/fo:block /fo:table-cell ... /fo:table-row But, It doesn't work ? What I miss? Did you set

RE: Border a row?

2002-05-15 Thread joseph berdat
Hi, I try to define a table with property border-collapse=collapse. But It doesn't work?? -Original Message- From: Ralf Steppacher [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 15, 2002 3:51 PM To: [EMAIL PROTECTED] Subject: Re: Border a row? I'm trying to border a row in a table by

Re: AWT renderer

2002-05-15 Thread J.Pietschmann
MARTIN Franck wrote: I did just that and it helped a bit. I executed the followind code : I meant look how AWTStarter uses the FOP core classes. The class itself is not exactly meant for reuse. But i get an exception during the AWTStarter constructor. Unfortunately there's no message (it's null).

Re: Acrobat pictograms and document summary

2002-05-15 Thread J.Pietschmann
Anil R. Pinto wrote: If it does that is great. But, does FOP not allow (or rather will it not support these) document summary features even in the future realeases. Someone could implement extension elements to carry the values. You could do it yourself, or convince or hire someone else to do

RE: Newbie: Error trying to convert (standalone) the simple.fo example after first installation...

2002-05-15 Thread Roland Neilands
I did not find this part of the installation particularly userfriendly either. Try this fop.bat instead: sets CLASSPATH environment variable correctly can be run anywhere. (change the directory to your fop install first): Failing this: use -d option for debug mode try docs\examples\runtests.bat

Re: Newbie: Error trying to convert (standalone) the simple.fo exampl e after first installation...

2002-05-15 Thread J.Pietschmann
Gilson Nascimento D Elrei wrote: I have donwloaded and installed FOP, i tried to convert the simple.fo file using it like my first interaction with this tool, but i'm receiving this follow message error: [ERROR]: Don't know what to do with This is a known problem caused either by the DOS command

Re: PDF doesn't show in ie over https

2002-05-15 Thread J.Pietschmann
Katiyar, Bhawana wrote: Hi! I generate PDFs using Fop. All PDF docs are displyed with IE 5.5, Netscape 6 over HTTP. When i switch it to HTTPS, Netscape works fine but IE gives the following error : Internet Explorer cannot downloadInternet Explorer was not able to open this Internet site.

Re: Border a row?

2002-05-15 Thread J.Pietschmann
joseph berdat wrote: Hello, I'm trying to border a row in a table by using following properties : Setting borders on rows doesn't yet work. Set them on the cells. J.Pietschmann