Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is benefit of using Antennahouse over Apache FOP? [closed]

I would like to know the difference and additional features in Antennahouse over Apache FOP.

like image 734
Thunder Avatar asked Mar 04 '10 05:03

Thunder


People also ask

Is Apache FOP thread safe?

Apache FOP may currently not be completely thread safe. The code has not been fully tested for multi-threading issues, yet.

What is Apache FOP used for?

Apache™ FOP (Formatting Objects Processor) is a print formatter driven by XSL formatting objects (XSL-FO) and an output independent formatter. It is a Java application that reads a formatting object (FO) tree and renders the resulting pages to a specified output.


1 Answers

I have been evaluating all commercial engines for almost 1 year now out of which 6 months I spent working with FOP; the main differences that I see are:

FOP:

  • Open source, free
  • Written in JAVA, it should work on anything that has Java on it (at least Windows, Linux, Solaris)
  • Is still pre-alpha release (last version is 0.95)
  • As of today, nobody in the open source community has released anything for almost 2 years!
  • Good if you have basic reports; doesn't support the more advanced stuff (like table-layout="auto", retrieving markers in table headers/footers - part of XSL-FO 1.1 and good for subtotals, etc.)
  • Some features are buggy (especially around footnotes, breaking tables across pages, etc). These are harder to track and will pop-up later on when you have already written your XSLTs.
  • Will consume a lot of memory - this is an issue if you want to run multiple reports in the same time (for example if you have a web site).

All commercial products have the following:

  • Technical support (some vendors will even help you troubleshoot performance issues and debug your stylesheets).
  • Are Unicode (can handle most scripts like Arabic, Hebrew, Chinese, Russian, Japanese, Thai, Vienamese, etc.)
  • Are XSL-FO 1.1 compatible.

Antenna House

  • Commercial, $4000-$5000 range (1st CPU)
  • Written in C++, cross platform (works at least on Windows and Linux)
  • Among unique features: support for MathML, good support for Japanese writing (top to bottom vertical writing)
  • Extensions (barcodes, mathml) are provided at extra charge

Ecrion

  • Commercial, $1500-$3500 range (any CPU)
  • Written in C++, cross platform (works at least on Windows and Linux)
  • Among unique features: a good Visual Designer, Silverlight Word and PowerPoint output, PDF forms
  • Very fast, extensions are provided standard

RenderX

  • Commercial, $3000-$4000 range (1st CPU)
  • Written in JAVA
  • Among unique features: AFP support, PDF forms

If your reports are simple, you can give it a shot. But my personal opinion is: don't go with FOP if you have the money to spend on a commercial engine. I used to think that being open source is cool because I can change it myself - it is not that easy to change, and my opinion is that is also very risky because you don't know what functionality will be affected. The functionality is actually quite complex, and that is why is not being actively improved anymore.

like image 148
XMLDUDE Avatar answered Nov 15 '22 06:11

XMLDUDE