Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

using Jasper reports in a PHP website

I would like to use Java reports 'report engine' to generate reports (HTML/PDF etc) and display them on my website.

However, my website is using a PHP web framework. Can anyone suggest how I may be be able to use Jasper Reports within a PHP web framework?

like image 613
skyeagle Avatar asked Nov 29 '10 13:11

skyeagle


People also ask

What is Jasper PHP?

The PHP client is a tool for interacting with the JasperReports Server via the RESTful Web Services. With this tool, you can easily search the repository, run reports, embed report output, and perform administrative tasks within any application written in the PHP language.

What is the difference between Jrxml and Jasper?

jrxml is a human readable XML file that contains the report template i.e. report structure and its formatting rules. . jasper is the compiled report template i.e. compiled .


1 Answers

If you checkout the PHP REST Client on Github, or add it to your PHP project via Composer you will be able to run a report through web services.

Your code should look something like:

<?php
    $c = new \Jaspersoft\Client\Client(
    "http://localhost:8080/jasperserver-pro",
    "jasperadmin",
    "jasperadmin",
    "organization_1"
  );

    $report = $c->reportService()->runReport('/reports/samples/AllAccounts', 'html');
    echo $report;       
?>

That would retrieve a report in HTML format and store it in $report. Of course you can change html to pdf or xls or whatever format you wish to export to.

If you wish to display PDFs or offer them for download, you will have to supply the binary data to some package that can handle it, or provide proper headers allowing it to be downloaded by a web browser.

I happen to be the one developing this package, so feel free to shoot me a line with any questions.

like image 152
grantbacon Avatar answered Sep 22 '22 05:09

grantbacon