Connect Workday to your favorite reporting tools without moving data.
Learn More →Design BIRT Reports on HCL Domino Data
Provide current HCL Domino data to your embedded analytics.
The CData JDBC Driver for HCL Domino integrates connectivity to HCL Domino APIs into your data-driven Java applications. You can use the CData JDBC Driver for HCL Domino with the BIRT (Business Intelligence Reporting Tools) platform to create BIRT reports that reflect changes to your data in real time.
- If you have not already done so, install the BIRT Framework plugin and the Database Development plugin for Eclipse.
- Click File -> New -> Report. The Report Design perspective is opened.
- In the Data Explorer, right-click Data Sources and click New Data Source.
- Select the Create from a Data Source Type in the Following List option and select JDBC Data Source.
- Click Manage Drivers and add the driver JAR, located in the lib subfolder of the installation folder.
- In the Database URL box, enter the JDBC URL containing the connection string.
Prerequisites
The connector requires the Proton component to be installed. Normally, Proton is distributed as part of the AppDev pack. See the HCL documentation for instructions on acquiring and installing Proton or the AppDev pack.
Once the Proton service is installed and running, you will also need to create a user account and download its Internet certificate. This certificate can be used to set the connector certificate connection properties.
Authenticating to Domino
- Server: The name or IP address of the server running Domino with the Proton service.
- Port: The port number that the Proton service is listening on.
- Database: The name of the database file, including the .nsf extension.
- SSLClientCertType: This must match the format of the certificate file. Typically this will be either PEMKEY_FILE for .pem certificates or PFXFILE for .pfx certificates.
- SSLClientCert: The path to the certificate file.
- SSLServerCert: This can be set to (*) if you trust the server. This is usually the case, but if you want to perform SSL validation, you may provide a certificate or thumbprint instead. See the documentation for SSLServerCert for details.
Additional Server Configuration
The connector supports querying Domino views if any are defined. Before views can be queried by the connector they must be registered with the design catalog.
Please refer to the Catalog Administration section of the AppDev pack documentation for details on how to do this.
Built-in Connection String Designer
For assistance in constructing the JDBC URL, use the connection string designer built into the HCL Domino JDBC Driver. Either double-click the JAR file or execute the jar file from the command-line.
java -jar cdata.jdbc.domino.jar
Fill in the connection properties and copy the connection string to the clipboard.
When you configure the JDBC URL, you may also want to set the Max Rows connection property. This will limit the number of rows returned, which is especially helpful for improving performance when designing reports and visualizations.
A typical JDBC URL is below:
jdbc:domino:Server=https://domino.corp.com;Database=names.nsf;Port=3002;SSLClientCertType=PEMKEY_FILE;SSLClientCert=full_path_of_certificate.pem;SSLServerCert=*
- Right-click the Data Sets folder and select the JDBC data source for HCL Domino.
- In the resulting dialog, build the SELECT query to be used to retrieve the data for the report. This article uses the following query:
SELECT Name, Address FROM ByName WHERE City = 'Miami'
- In the Palette, drag a Chart onto the editor. The chart wizard is displayed.
- After selecting the chart type, drag columns onto the chart fields on the Select Data tab.
- Click Run -> View Report -> In Web Viewer to view the report.
Your BIRT reports can now pick up any updates to HCL Domino data.
To publish the report to your application server, add the driver JAR to the BIRT Viewer's classpath. For more information, see the CData KB for guides to deploying the JDBC Driver on Java application servers.