Model Context Protocol (MCP) finally gives AI models a way to access the business data needed to make them really useful at work. CData MCP Servers have the depth and performance to make sure AI has access to all of the answers.
Try them now for free →Feed HCL Domino Data into FineReport
How to set HCL Domino data as a JDBC data source in FineReport.
The CData JDBC Driver for HCL Domino fully implements the JDBC standard and can provide HCL Domino data connectivity to a wide variety of BI, reporting, and ETL tools and custom applications. In this article, we explain how to set HCL Domino data as JDBC data source in FineReport and view HCL Domino data as a table in the Report Designer.
Set Up a JDBC Data Source of HCL Domino Data
Follow the instruction below to set HCL Domino data as a FineReport database connection.
- Copy the cdata.jdbc.domino.jar file from the lib folder in the CData JDBC Driver for HCL Domino installation directory to the lib folder of the FineReport installation directory. You will need to copy the cdata.jdbc.domino.lic file as well.
- From the Server tab, select Define Data Connection, click to add a new connection, and click JDBC.

Next we will set up the data connection definition in the window.
- Database: Others
- JDBC Driver: cdata.jdbc.domino.DominoDriver
-
URL: A standard JDBC connection string using semicolon-separated connection properties.
Connecting to Domino
To connect to Domino data, set the following properties:
- URL: The host name or IP of the server hosting the Domino database. Include the port of the server hosting the Domino database. For example: http://sampleserver:1234/
- DatabaseScope: The name of a scope in the Domino Web UI. The driver exposes forms and views for the schema governed by the specified scope. In the Domino Admin UI, select the Scopes menu in the sidebar. Set this property to the name of an existing scope.
Authenticating with Domino
Domino supports authenticating via login credentials or an Azure Active Directory OAuth application:
Login Credentials
To authenticate with login credentials, set the following properties:
- AuthScheme: Set this to "OAuthPassword"
- User: The username of the authenticating Domino user
- Password: The password associated with the authenticating Domino user
The driver uses the login credentials to automatically perform an OAuth token exchange.
AzureAD
This authentication method uses Azure Active Directory as an IdP to obtain a JWT token. You need to create a custom OAuth application in Azure Active Directory and configure it as an IdP. To do so, follow the instructions in the Help documentation. Then set the following properties:
- AuthScheme: Set this to "AzureAD"
- InitiateOAuth: Set this to GETANDREFRESH. You can use InitiateOAuth to avoid repeating the OAuth exchange and manually setting the OAuthAccessToken.
- OAuthClientId: The Client ID obtained when setting up the custom OAuth application.
- OAuthClientSecret: The Client secret obtained when setting up the custom OAuth application.
- CallbackURL: The redirect URI defined when you registered your app. For example: https://localhost:33333
- AzureTenant: The Microsoft Online tenant being used to access data. Supply either a value in the form companyname.microsoft.com or the tenant ID.
The tenant ID is the same as the directory ID shown in the Azure Portal's Azure Active Directory > Properties page.
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;AuthScheme=OAuthPassword;User=my_domino_user;Password=my_domino_password;
- Click Connection pool attributes and set Test before getting connections to No.


Click Test connection to ensure you have configured the connection properly. With the connection to HCL Domino set up, you can use it as FineReport data source.
Select HCL Domino Data in the Report Designer.
- Click to add a new template data set and select DB query to open the database query window.
- Choose the JDBC connection that you created from the dropdown list.
- The HCL Domino entities will appear as tables on the left pane.
- Write a SELECT statement for the HCL Domino data tables and columns that you want to load.
- Click preview and data is shown as table.



With these simple steps, HCL Domino can be used as a JDBC data source in FineReport.