On this page: |
Summary: this page describes the CAST Report Generator for Dashboards release. |
CAST Report Generator is now provided as an cross-platform ZIP file alongside the traditional Microsoft Windows GUI "installable" release. In other words this release can run on both Microsoft Windows and Linux operating systems and can be simply unzipped to the install location (no installer is provided). The primary goal of this release is to provide reporting capabilities to the CAST RestAPI - this integration is first and foremost used by the CAST dashboards to generate reports from within the dashboard interface (see CAST Dashboard Package - Report Generation configuration and Security Dashboard - Report Generation).
You can obtain the Report Generator for Dashboards from ExtendNG. Search for "report generator" and choose the Report Generator for Dashboards option:
A ZIP file will be downloaded. Extract the ZIP and deploy the files as described below in Installation process.
You can obtain the CAST Report Generator for Dashboards from the CAST Product Center - this requires a CAST login. Download the latest release, unpack the ZIP, and you will find another ZIP called ReportGeneratorCLIforAllOS.zip alongside the traditional GUI based ReportGeneratorSetup.exe:
Extract the ZIP called ReportGeneratorCLIforAllOS.zip and deploy the files as described below in Installation process.
To install and use the CAST Report Generator for Dashboards, the following is required:
CAST Report Generator for Dashboards requires the .NET Core runtime as follows:
Report Generator release | .NET Core runtime release required | Download |
---|---|---|
≥ 1.13.0 | 2.2.x | https://dotnet.microsoft.com/download/dotnet-core/3.0 |
1.9.0 - 1.12.0 | 3.0.x | https://dotnet.microsoft.com/download/dotnet-core/2.2 |
This runtime is available for both Microsoft Windows and for Linux operating systems depending on the Operating System used to host Apache Tomcat:
Microsoft Windows | The runtime can be downloaded as an installer - choose the .NET Core Installer runtime that matches your Windows environment: | |
---|---|---|
Linux | Package manager instructions are provided for many different Linux distributions - choose the Package Manager Instructions option: Then select the relevant Linux distribution to view the installation instructions:
|
CAST Report Generator for Dashboards only requires that .NET Core runtime is present on the operating system. Therefore any operating system that supports the installation of .NET Core can be used for the CAST Report Generator for Dashboards. CAST has tested Microsoft Windows and CentOS (Linux).
≥ 1.9.x |
---|
The user that Apache Tomcat is running as must have read/write access to the following locations:
In Linux environments, typically the "rw-" permission is sufficient. |
Installing CAST Report Generator for Dashboards consists only of unzipping the downloaded ZIP file to a location on the target server, for example:
Microsoft Windows | D:\data\CAST\ReportGeneratorforDashboards |
---|---|
Linux | /opt/reportgeneratorfordashboards |
Apache Tomcat (if installed on the same server as Report Generator for Dashboards) must be restarted so that the changes are taken into account.
As mentioned previously, the primary goal of this release is to provide reporting capabilities to the CAST RestAPI - this integration is first and foremost used by the CAST dashboards to generate reports from within the dashboard interface (see CAST Dashboard Package - Report Generation configuration and Security Dashboard - Report Generation). However, it is also possible to use CAST Report Generator for Dashboards yourself via its CLI. The CLI instructions are identical to those provided for the standard CAST Report Generator GUI - see here for more instructions.
You must specify the CAST Report Generator for Dashboards in a specific way:
dotnet %path_to_CastReporting.Console.Core.dll% -webservice %webservice% -username %username% -password %password% -application %application% -domain %domain% -template %template% -file %file% |
For example:
dotnet "D:\data\CAST\ReportGeneratorCore\CastReporting.Console.Core.dll" -webservice "http://<server>:<port>/CAST-RESTAPI/rest/" -username cio -password cast -application "Jurassic Park" -domain "AED" -template "Executive-summary.docx" -file "D:\temp\Core_Report.docx" |
Available in v. ≥ 1.11.0. |
If you have enabled SAML authentication mode for your CAST Dashboard/RestAPI deployment, you will need to use an API Key instead of a password. To do, so you will need to modify the command line as follows:
For example:
dotnet "D:\data\CAST\ReportGeneratorCore\CastReporting.Console.Core.dll" -webservice "http://<server>:<port>/CAST-RESTAPI/rest/" -username cio -password myapikey -apikey true -application "Jurassic Park" -domain "AED" -template "Executive-summary.docx" -file "D:\temp\Core_Report.docx" |
The CAST Report Generator for Dashboards saves a log of all interactions in the folder into the Logs folder (located in the folder in to which you have unzipped the CAST Report Generator for Dashboards). One log file per day is generated:
ReportGenerator_<timestamp>.log |
For example ReportGenerator_20190328.log.
One of the following codes will be returned on completion of the CLI:
0 | Report successfully generated |
---|---|
1 | Bad arguments given to the Report Generator |
2 | Web service cannot be accessed or is badly configured |
3 | Report failed |
See also Report Service - 1.9.0 for more information.