I am designing a generic reporting framework in Java. Here is my situation:

  1. There are many business units (BU) in an organization (Accounts, HR, Recruitment, Transportation)

  2. For various business reasons each BU developed independent Java web applications. As part of it each web application developed in the past Reports using BIRT and JasperReports

  3. The organization decided to have one common reporting platform across the organization.

  4. We will have a single reporting platform across the organization, and each of the existing Java applications (running their own instances) will invoke the common Reporting platform (through Spring HTTPInvoker) when they need to generate a report.

  5. I need to come up with a common reporting client API for all the existing web applications.

  6. Whenever a new report is required, the respective web application will develop a report either in JasperReports or BIRT and deploy in the common reporting platform.

  7. Respective BU Java web application will invoke by passing the parameters like REPORT_NAME, parameter values and BU name.

  8. The Reporting framework should identify the report deployed in the platform, invoke respective web application report business logic to prepare the data set, generates the report and sends back the report out as byte stream.

I hope I conveyed what we need to develop in this reporting platform.

Is there any such platform already available which can support both JasperReports & BIRT in its single instance. Or any other suggestions?

link|improve this question
feedback

1 Answer

Take a look here:

The documentation is freely available from Chapter 15 of Indispensable, here:

The Report Integration Framework (RIF) is open source. I have not had time to implement a BIRT integration. However, if your need is to generate reports independently of BIRT or JasperReports, then RIF is what you want. RIF becomes the report API that the client application uses. The client application can generate reports without being tightly coupled to either BIRT or JasperReports.

Presently, the API has a JasperReports implementation as proof of concept. For someone familiar with BIRT's API, it should not take long to implement the minimal requisite interfaces.

Contact me if you would like some help implementing the BIRT abstraction layer. If you implement the BIRT abstraction layer yourself, pass it along to me and I'll add it to the package.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.