Questions on the new Intermediate Format

2009-06-03 Thread Tobias Anstett [k15t.com]
Hi, I have some question regarding the new intermediate format: 1) Is it used automatically in FOP 0.95 or do I have to activate it somehow? 2) Does it change the way page-sequences are handled? In other words does the rendering process still hold the whole tree (of the processed page-sequence)

Re: Questions on the new Intermediate Format

2009-06-03 Thread Andreas Delmelle
On 03 Jun 2009, at 08:23, Tobias Anstett [k15t.com] wrote: Hi Tobias I have some question regarding the new intermediate format: 1) Is it used automatically in FOP 0.95 or do I have to activate it somehow? No, it is only available in FOP's Trunk version. IIRC, it is used automatically.

Re: How to apply diff patch to FOP

2009-06-03 Thread Pascal SANCHO
Hi, MaheshR a écrit : Hi I am newbie to FOP. we are trying to implement multi column region body in single page. As FOP doesn't yet support these features, This is not totally exact: FOP implements multi-column in region-body, regarding FO-REC 1.0; see [1], [2], and [3]. What FOP doesn't

Re: bench marking for xml to pdf conversion

2009-06-03 Thread ismail . khan
Hi, I had my xml file as below it has a single page-sequence with a table spanning +100 pages. What needs to be done to achive multiple page-sequence. ---

Re: Questions on the new Intermediate Format

2009-06-03 Thread Tobias Anstett [k15t.com]
Hi Andreas, No, it is only available in FOP's Trunk version. IIRC, it is used automatically. How stable is it? Are there any known issues that some content can't be rendered? No. This remains the same for the moment. Note that FOP Trunk currently does have an option made available to store

Re: FOP 0.95 fails to compile large PDF files - java heap space

2009-06-03 Thread nancy_b
Hi, Thanks a lot for suggestions. It seems that I have increased JAVA heap space, by specifying -Xmx1000m (I have 2Gb) , although I am not sure how much I should really allocate for running compilation of large docs. The question that remained unclear is that while FOP 0.94 doesn't complain on

Re: FOP 0.95 fails to compile large PDF files - java heap space

2009-06-03 Thread Pascal SANCHO
nancy_b a écrit : Hi, Thanks a lot for suggestions. It seems that I have increased JAVA heap space, by specifying -Xmx1000m (I have 2Gb) , although I am not sure how much I should really allocate for running compilation of large docs. The question that remained unclear is that while FOP 0.94

Re: FOP 0.95 fails to compile large PDF files - java heap space

2009-06-03 Thread nancy_b
Thanks for suggestions! Kindaian wrote: In my case, i had to change it to the max that the machine would accept... somewhere around 1024m... [but it was on windows and on a 32bit environment... on 64 bits - both os and java - this issues are largelly overcome by the ability to

Re: FOP 0.95 fails to compile large PDF files - java heap space

2009-06-03 Thread Vincent Hennebert
Hi Nancy, nancy_b wrote: Hi, Thanks a lot for suggestions. It seems that I have increased JAVA heap space, by specifying -Xmx1000m (I have 2Gb) , although I am not sure how much I should really allocate for running compilation of large docs. If that works with -Xmx1000m, then go for it.

Re: Event model doesn't contain the definition for org.apache.fop.afp.AFPEventProducer

2009-06-03 Thread Vincent Hennebert
Hi, attaluri1210 wrote: Hi, I have downloaded the latest source from the trunk and I have build it. When I tried to run FO - AFP I got the below exception. Can anyone guide me to get rid of this error. Your help is greatly appreciated. I have downloaded the file by file from the

FopFactory.newInstance() error

2009-06-03 Thread Vladimir Dejanovic
Hello, I created app which is run on tomcat and I am using fop to create some PDF. Strange thing is happening , after several month of working it just stopped working, funny thing is that as far as I know nothing is changed. Error is occurring in this call FopFactory.newInstance() this is

Re: FopFactory.newInstance() error

2009-06-03 Thread Artur Zinatullin
VD java.lang.NoClassDefFoundError: org/apache/batik/util/XMLResourceDescriptor Usually indicates, that You have some jars missing from Your classpath. In this case it might be batik-all.jar - To unsubscribe, e-mail:

Re: FopFactory.newInstance() error

2009-06-03 Thread Vladimir Dejanovic
Artur Zinatullin wrote: VD java.lang.NoClassDefFoundError: org/apache/batik/util/XMLResourceDescriptor Usually indicates, that You have some jars missing from Your classpath. In this case it might be batik-all.jar

Re: Issue generating barcode when using the latest code from trunk.

2009-06-03 Thread Chris Bowditch
attaluri1210 wrote: snip/ When i run the code i am getting the below exception. Jun 3, 2009 12:16:18 AM org.apache.fop.events.LoggingEventListener processEvent SEVERE: Image not available. URI: (instream-object). Reason: org.apache.xmlgraph ics.image.loader.ImageException: The file format is

Re: FopFactory.newInstance() error

2009-06-03 Thread Chris Bowditch
Vladimir Dejanovic wrote: snip/ the thing which I can't figure out is how it worked for several month and then just stopped. Also why try catch block isn't working like it should ? Your catch block is catching Exception, but the class NoClassDefFoundError extends Error which extends

Re: Issue generating barcode when using the latest code from trunk.

2009-06-03 Thread attaluri1210
Excellent..I got it. Thanks for a very quick reply. Thanks, Bharat cbowditch wrote: attaluri1210 wrote: snip/ When i run the code i am getting the below exception. Jun 3, 2009 12:16:18 AM org.apache.fop.events.LoggingEventListener processEvent SEVERE: Image not available. URI:

Re: FopFactory.newInstance() error

2009-06-03 Thread Vladimir Dejanovic
Your catch block is catching Exception, but the class NoClassDefFoundError extends Error which extends Throwable. Exception is a sub class of Throwable. So change your catch block to catch Throwable objects to ensure you can catch errors as well as exceptions. try {. }

Re: How to apply diff patch to FOP

2009-06-03 Thread MaheshR
Any help on mutliple columns in single page using xsl-fo will be greatly appreciated. The final output should be looks like news paper columns. Thanks in advance. Thanks Mahesh Pascal Sancho wrote: Hi, MaheshR a écrit : Hi I am newbie to FOP. we are trying to implement multi column

Re: FOP 0.95 fails to compile large PDF files - java heap space

2009-06-03 Thread nancy_b
Hi dear Vincent! First of all, thank you a lot for your explanations!!! ...the reason was to make the Jeuclid plug-in work more out of the box... I checked on my system - I don't have the Jeuclid plug-in on my system (should be in /lib directory, right?). Does it come by default with FOP or

Re: FopFactory.newInstance() error

2009-06-03 Thread Andreas Delmelle
On 03 Jun 2009, at 15:25, Vladimir Dejanovic wrote: Hi Vladimir snip / this part of code should catch errors Indeed, but the related error is already caught inside SVGElementMapping.initialize(). The reason is obviously that we don't want FOP to crash on this, just log an error message

Re: Questions on the new Intermediate Format

2009-06-03 Thread Andreas Delmelle
On 03 Jun 2009, at 09:18, Tobias Anstett [k15t.com] wrote: Hi Tobias No, it is only available in FOP's Trunk version. IIRC, it is used automatically. How stable is it? Are there any known issues that some content can't be rendered? For now, it seems to work nicely. I have not seen any

Re: How to apply diff patch to FOP

2009-06-03 Thread Pascal SANCHO
MaheshR a écrit : Any help on mutliple columns in single page using xsl-fo will be greatly appreciated. The final output should be looks like news paper columns. You can find some examples given with FOP in following folder: FOP_dir/examples/fo/region_body That should give you some ideas

Re: FopFactory.newInstance() error

2009-06-03 Thread Tobias Anstett [k15t.com]
Hi Vladimir, if you haven't modified your app, maybe you or your workmates modified the classpath - maybe adding another jar to tomcat or executed a mvn build that updated some jars inside the app. Cheers, Tobias On Wed, Jun 3, 2009 at 3:58 PM, Vladimir Dejanovic

Re: Issue generating barcode when using the latest code from trunk.

2009-06-03 Thread attaluri1210
Can you guide me where can i get the latest Barcode4j FOP plugin. i beleive i have downloaded the barcode4j-fop-ext-complete-2.0.jar. Is this the latest one? Thanks, Bharat cbowditch wrote: attaluri1210 wrote: snip/ When i run the code i am getting the below exception. Jun 3, 2009

Re: FopFactory.newInstance() error

2009-06-03 Thread Vladimir Dejanovic
Andreas Delmelle-2 wrote: On 03 Jun 2009, at 15:25, Vladimir Dejanovic wrote: Hi Vladimir snip / this part of code should catch errors Indeed, but the related error is already caught inside SVGElementMapping.initialize(). The reason is obviously that we don't want FOP to crash

Re: Issue generating barcode when using the latest code from trunk.

2009-06-03 Thread Chris Bowditch
attaluri1210 wrote: Can you guide me where can i get the latest Barcode4j FOP plugin. i beleive i have downloaded the barcode4j-fop-ext-complete-2.0.jar. Is this the latest one? There's no official Barcode4J release with the changes for the FOP IF XML yet. I had to download the Barcode4J

Re: How to apply diff patch to FOP

2009-06-03 Thread Mahesh Rayudu
Excellent.. Thanks. On Wed, Jun 3, 2009 at 9:43 AM, Pascal SANCHO pascal.san...@takoma.frwrote: MaheshR a écrit : Any help on mutliple columns in single page using xsl-fo will be greatly appreciated. The final output should be looks like news paper columns. You can find some examples

Re: Issue generating barcode when using the latest code from trunk.

2009-06-03 Thread attaluri1210
I have used the configuration parameter you have mentioned and looks like it worked fine. Thanks, bharat cbowditch wrote: attaluri1210 wrote: Can you guide me where can i get the latest Barcode4j FOP plugin. i beleive i have downloaded the barcode4j-fop-ext-complete-2.0.jar. Is this the

Unable to write to default external resource group file 'resources.afp'. and Problem with images when the mode is set to color

2009-06-03 Thread attaluri1210
Hi, I am trying get the afp output from fo using FOP. I took the complete source from trunk today. I am getting two issues. 1. Unable to write to default external resource group file 'resources.afp'. 2. When we set the mode as Color for Images tag in config, the image is not displaying

Re: FOP 0.95 fails to compile large PDF files - java heap space

2009-06-03 Thread Andreas Delmelle
On 03 Jun 2009, at 15:29, nancy_b wrote: Hi Nancy, Vincent, First of all, thank you a lot for your explanations!!! ...the reason was to make the Jeuclid plug-in work more out of the box... Well, actually, the change mentioned by Vincent is not yet in 0.95. The FOPropertyMapping in that

Re: Missing images when many images are displayed

2009-06-03 Thread jmorra
Thanks for the help with this question, I was able to upgrade to fop 0.95 (as you suggested). It too didn't print the images correctly. However, I was able to solve my problem by using a for each loop and creating a two column table. However, now I'm having another image problem. I need to

Re: Missing images when many images are displayed

2009-06-03 Thread jmorra
OK, well I'm going to answer my own post because I figured it out, and for everyone else out there who has this issue. The way I solved it was by changing my keystore using the java keytool command. When I first created my keystore, I did it with a CN (computer name) of localhost. This is why