I am writing a Java web application that I would like to allow users to run basic reports in PDF format. I usually used Jasper Reports for this. However, this time I would like users to be able to edit their own reports in iReport and upload them. Which should be fairly straightforward.
It made me think, Jasper allows you to efficiently write code in reports that run when a report is created. Is it possible to write a report that has full access to the Java API and therefore to my web application. I do not want users to be able to kill tomcat or even worse use the DAO api that I created to read other users' data.
Does anyone know if this is really possible, and if so, then somehow you can do it. Maybe I can filter out the XML reports before it runs some of them?
Is it also known that the same applies to other open source reporting tools such as BIRT?
source
share