...
A ZIP file will be downloaded. Extract the ZIP and deploy the files as described below in Installation process.
1.9.0
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.
Limitations
- The tool has no GUI - it is designed to be used primarily when generating reports from within the CAST Dashboard interface (see Engineering Dashboard - Report Generation and Security Dashboard - Report Generation) and also in CLI mode.
- No PDF export capabilities in CLI mode.
...
To install and use the CAST Report Generator for Dashboards, the following is required:
.NET / .NET Core
CAST Report Generator for Dashboards requires the the .NET / .NET Core runtime/SDK as follows:
Report Generator release | Minimum .NET / .NET Core release | Download | Notes | ≥ 1|
---|---|---|---|---|
≥ 1.24.x | .NET Core 6.0 SDK | https://dotnet.microsoft.com/en-us/download/dotnet/6.0 | - | |
1.14.0x | .NET Core 3.1.x SDK | https://dotnet.microsoft.com/download/dotnet-core/3.1 | A change to the SDK rather than the runtime to match the requirements for Report Generator GUI. | |
1.13.x | .NET Core 3.0.x runtime | https://dotnet.microsoft.com/download/dotnet-core/3.0 | Future releases of CAST Report Generator will require .NET Core 3.1.x due to the end-of-life of .NET Core 3.0.x scheduled for 3rd March 2020, therefore CAST recommends installing .NET Core 3.1.x to avoid the need to re-install .NET Core in the future. | |
1.9.0 x - 1.12.0x | .NET Core 2.2.x runtime | https://dotnet.microsoft.com/download/dotnet-core/2.2 | - |
This runtime/SDK is available for both Microsoft Windows and for Linux operating systems depending on the Operating System used to host Apache Tomcat:
Microsoft Windows | .NET Core can be downloaded as an installer - choose the .NET Core Installer runtime/SDK 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:
|
Info | ||
---|---|---|
You can determine if .NET Core is already installed and what version using the following command on either Microsoft Windows (in a Powershell session) or in Linux terminal:
|
Supported Operating Systems
...
- need to use the tool to generate Standard Compliance reports in the CAST Engineering or Security Dashboards, you should deploy the tool on the Apache Tomcat server which hosts your dashboards and then complete Step 2 below.
- simply want to use the tool via CLI to generate reports (see below) you can deploy the tool on any server providing it has network access to a CAST RestAPI interface (i.e. a dashboard). There is nothing further to do in this case.
...
If you need to use the tool to generate Standard Compliance reports in the CAST Engineering or Security Dashboards, a further configuration process is required:
Edit .
...
properties file
Edit the following file with a text editor:
Code Block | ||
---|---|---|
| ||
WAR 1.x
CATALINA_HOME\webapps\<deployed_war>\WEB-INF\report.properties
WAR ≥ 2.x
CATALINA_HOME\webapps\<deployed_war>\WEB-INF\classses\application.properties
ZIP ≥ 2.x
<unpacked_zip>\application.properties
JAR ≥ 2.5
%PROGRAMDATA%\CAST\Dashboards\<dashboard>\application.properties |
Find the following options and modify as explained below:
Code Block | ||
---|---|---|
| ||
## REPORT CONFIGURATION # Set the Report Generator path # If this variable is not set then the document generation is considered as disabled. # The path is probably something such as (Linux/Windows): #report.reportGenerator=dotnet /opt/report-generator/CastReporting.Console.Core.dll #reportreport.reportGenerator=dotnet D:\\data\\CAST\\ReportGeneratorforDashboards\\CastReporting.Console.Core.dll # Set the directory of reports #report.directory=/tmp/reports #reportreport.directory=D:\\temp\\reports # Set the current Web Service URL. The current REST API called back by the Report Generator. report.webServiceURL=http://localhost:8888/CAST-RESTAPI/rest8080/rest # Set the maximum number of concurrent Report Generator processes to limit the CPU and memory consumption report.maxConcurrentProcesses=4 # set a delay to determine never ending ReportGenerator processing # After this delay the Report Generator process will be killed # 600 = 10 minutes report.maxDelayInSeconds=600 |
report.reportGenerator=dotnet | Add a new line pointing to the location of the
| |||||||
---|---|---|---|---|---|---|---|---|
report.directory= | Add a new line pointing to the temporary folder where the reports will be generated on the server hosting Apache Tomcat/the deployed ZIP file. You can also uncomment and modify an example line. For example:
| |||||||
report.webServiceURL= | Modify the existing line to point to the RestAPI in your CAST Engineering Dashboard or CAST-RESTAPI-integrated.war deployment. This is used by CAST Report Generator for Dashboards. For example:
|
For example:
...
language | text |
---|
...
Enable and configure security.apikey (optional for SAML/LDAP authentication mode)
If you are using the Dashboards embedded in AIP Console (integrated RestAPI) or standalone CAST Dashboards AND you have LDAP / SAML authentication enabled in AIP Console/standalone CAST Dashboards, you must enable and configure the security.apikey option with a random string of characters. Using this option allows the CAST Report Generator for Dashboards to authenticate correctly. To do so see the Configuration section in RestAPI authentication using an API key.
Restart the application
Restart the web application to ensure the changes are taken into account.
...
Info |
---|
Available in v. ≥ 1.11.0. |
If you have enabled SAML authentication mode for your CAST Dashboard/RestAPI deploymentare using the Dashboards embedded in AIP Console (integrated RestAPI) or standalone CAST Dashboards AND you have LDAP / SAML authentication enabled in AIP Console/standalone CAST Dashboards, you will need to use an API Key instead of a password. To do , so you will need to modify so see the Configuration section in RestAPI authentication using an API key. Then modify the command line as follows:
...