Thanks for responding.
Based on the documentation from the jdbc module and Denodo jdbc drivers, this is my current config.
const config = {
url: URL=jdbc:vdb://<host>:<port>/database_name?ssl=true,
drivername: 'com.denodo.vdp.jdbc.Driver',
user: @username,
password: @password,
minpoolsize: 2,
maxpoolsize: 3
};
I have **javax.net.ssl.trustStore** already set to the location of the cacerts file as suggested in the Enabling SSL/TLS for External Clients article. In addition, I was wondering if you also used https and fs to setup an https server in NodeJS for connection. Did you create the .cer file or does it already exist somewhere in a Denodo folder? If so, how do we create one or where do we find it? Currently, I already have a .key and .pem file that was generated using openssl that I imported in the Trusted Root Certification Authorities tab.