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
?
相关问题
- Jasper: error opening input stream from url
- JasperReports Server parameter dependency
- JasperReports Server parameter dependency
- is it possible print element only when its detail
- JasperReports CompileReport
相关文章
- How to set up jasper reports in spring with subrep
- Modularization of Jasper reports: Pass data source
- How to use jasperreports subreports with grails ja
- Current URL /web/guest/HTML generates exception: n
- SAX2 driver class not found
- Passing array data from PHP to JasperReports (with
- How to force image url in jasper report export to
- SubReport not shown
Yes, it is possible.
You should edit the
jasperserver\WEB-INF\actionModel-search.xml
file.You need to find the definition of
ScheduleAction
action in this file and add the condition for the ROLE_ADMINISTRATOR role:I've just add the
<condition test="checkAuthenticationRoles" testArgs="ROLE_ADMINISTRATOR">
for theScheduleAction
action.After that you should restart the application server (Tomcat).