0
votes
1answer
15 views

Apache FOP and Arial font

My XSL style uses Arial font <fo:block font-family="Arial" font-size="8pt" font-weight="normal"> Configuration file fonts.xml: <?xml version="1.0"?> <fop> <renderers> ...
0
votes
1answer
23 views

XSL + Apache FOP: Adding content on the remainder of empty space on a paragraph

I'm making a PDF generator with Apache FOP and one of the main requirement is to fill the remaining empty space of a paragraph with a series of dashes like this: This is a paragraph on a page that ...
0
votes
0answers
48 views

WMF file format in XSLFO

I am trying to convert Docx to Pdf with the document.xml file from the docx using Apache FOP. I am facing problem to embed the wmf equation files in PDF, it showing the following error: WARNING: ...
0
votes
1answer
202 views

XSLT Generate Dynamic Rows and Columns for Apache FOP

For the following xml file, i need to generate an xsl-fo file to be converted into pdf. I am new to style sheets and struggling to create dynamic table. Please help. Also, the width for each column ...
0
votes
2answers
102 views

Apache FOP 1.0 Multithreading - Too many open files err24

We use Apache FOP to convert a whole lot of XML's to AFP's and PDF's. Our current load would be around 25k files per run on a HP-UX system. We have 8 threads in total that are used to initialize and ...
1
vote
1answer
66 views

Apache FOP - how to find which data will be printed on which page

I am using Apache FOP to generate PDF from XSLT in my retail project and then print the PDF. A new requirement has come to print the running total in the footer of every page of receipt. I am not ...
0
votes
2answers
409 views

What is wrong with my xsl-fo code

I am trying to generate a pdf using apache-fop from the following command. C:\fop-1.0-bin\fop-1.0>fop -xml sample1.xml -xsl xsl-fo.xsl -pdf sample2.pdf My xml looks like this <?xml ...
3
votes
1answer
125 views

Adding Annotation to Apache Fop

I am rendering a PDF using Apache Fop. I am making XSLT templates which I used to convert xml to PDF. I want to put annotation in the output PDF using Apache Fop. I have been searching and it says ...
2
votes
1answer
333 views

PDF forms in Apache FOP generated PDF

I am using FOP to generate the PDF from XSL:FO and iText to apply the digital signature and signed date field in the PDF. Problem is i am using co ordinates to apply the signature and date in the ...
0
votes
0answers
82 views

After moving from Weblogic to Tomcat… FOP 0.95 generated PDFs suddenly have undesired margins

Some bizarre behavior was reported by a client developing with FOP and I wanted to see if anyone knows what is going on. We have been generating PDF's from text using FOP for a long while on ...
1
vote
0answers
110 views

Apache FOP Content overflow

I am creating a PDF using Apache FOP and am trying to make my content overflow to the next page. I have tried setting 'overflow="paginate"' in the main block however this didn't work. Has anyone else ...
0
votes
1answer
189 views

Installing Apache FOP library in Windows Shared Host

I am interested in using Apache FOP to generate PDFs from XML within a website developed in ASP.NET. My website is deployed in a shared Windows Host (reliablesite.net). Is it possible to install ...
2
votes
1answer
931 views

Docbook stylesheet and tables, FOP error

I've never experienced this error since I use Docbook. I've looked it up and found out that this error was fixed earlier in the past (and also I gave a try to do the same steps as it was explained). ...
0
votes
1answer
1k views

Change table end-indent in Apache FOP

I am using Apache FOP 1.0 to generate PDF. I want to extend the end-indent of the table such that I do not get the INFO warnings: INFO: An fo:table is wider than the available room in ...
0
votes
1answer
248 views

getting a header with two alignments in apache fop

In xsl:fo i'm trying to create a header that contains the company name and the print date. The company name should be aligned to the left and the print date should be aligned to the right. Somhow i ...
1
vote
2answers
868 views

Apache FOP, Unicode. Text is not searchable

I've got a problem with some legacy Java code that renders PDF files. We're using Apache FOP: Implementation-Title: Fop Implementation-Version: 0.20.5 Implementation-Vendor: Apache Software ...
0
votes
1answer
967 views

Apache FOP : multiple page PDF from xml array list iteration

I have xml document that contains an array/list of complex elements. I would like to generate a PDF file such that each complex element is displayed on a new page. I have it working for a single page. ...
0
votes
3answers
919 views

IKVM Apache FOP

I am trying to compile the Apache FOP v1.0 library to a .NET DLL. I followed the instructions in: Using ApacheFOP v1.0 in .NET application However when i run the ikvmc command i get a number of ...
2
votes
1answer
466 views

ApacheFOP - Blank PDF Output?

I've been trying to transform my XML documents to PDF through Apache FOP, but the output pdf is blank. Any help to why this is occuring is greatly appreciated. The code seems to be executed without ...
2
votes
1answer
792 views

What is the maximum number of pages tha apache fop can generate?

Hi I was working with apache fop and when the number of pages exceeds about 130 pages ,it could not generate the pdf .... Is there any limit to page number or the length of xml file... Exception in ...
3
votes
1answer
3k views

Apache FOP: Displaying UTF-8 Characters in PDF (without embed?)

I'm trying to use FOP to export a PDF with UTF-8 characters, preferably without needing to embed the font. The following code: <fo:block font="10pt Helvetica" text-align="justify" ...
0
votes
1answer
905 views

Apache fop-0.95 error on FopFactory.newInstance() command

I am using Apache fop-0.95 to build pdf files from a JSP web application on IBM iSeries V5R4 using Websphere 6.0. Everything works perfect in my development using Websphere Development Studio client. ...
19
votes
12answers
3k views

What is the recommended toolchain for formatting XML DocBook?

I've seen Best tools for working with DocBook XML documents, but my question is slightly different. Which is the currently recommended formatting toolchain - as opposed to editing tool - for XML ...