I want to prevent normal users from scheduling a report.
Only administrator will have the right to schedule report.
Is it possible with JasperReports Server?
I want to prevent normal users from scheduling a report. Only administrator will have
Share
Yes, it is possible.
You should edit the
jasperserver\WEB-INF\actionModel-search.xmlfile.You need to find the definition of
ScheduleActionaction in this file and add the condition for the ROLE_ADMINISTRATOR role:I’ve just add the
<condition test="checkAuthenticationRoles" testArgs="ROLE_ADMINISTRATOR">for theScheduleActionaction.After that you should restart the application server (Tomcat).