BIRT is a powerful Open Source Business Intelligence and Reporting Tools I came to use in the last weeks for a project. Its key features are:

  • Eclipse based report solution
  • Very nice report designer producing a standard xml file. This file can be then used to deploy the report in several ways
  • runtime component for easily serving reports on a server, also by a web server (like Tomcat)
  • outstanding Java APIs for creating and modifying the XML report design (DE API), for consuming and deploying the reports in several ways (RE API) and for creating and rendering charts (CE API)

For creating a BIRT report with the Eclipse environment you can use this very nice tutorial.

For standardizing and templating BIRT reports in an enterprise environment using BIRT report libraries and templates you can read this great article.

For deploying your BIRT reports in various ways there is another great article.

After reading the last article you will find out that there are mainly the following ways to deploy a BIRT report (without using Eclipse):

  • Deploy the report with the BIRT Viewer Servlet
  • Deploy the report with a servlet
  • Using the BIRT Viewer in a RCP Application
  • Using the BIRT Report Engine API in RCP Application

Of course if you want to use BIRT reports in a NOT J2EE application, you can still consider to create some kind of web services.

A very nice and easy way I found to deploy reports to an enterprise is by using the BIRT Viewer Servlet in a servlet engine like Tomcat. This is just a question of deploying the Viewer servlet and the report xml files to the web servlet engine, and it is all. Users will be able to access the real time generated reports in a web based way (with HTML and pdf outputs).

You could have the need to send an email with some reports attached on a regular time manner. For doing so I quickly wrote the following Java class that can be run from the command line.

Read more