skip to main content
Using the Driver : Data Encryption : SSL Encryption : Enabling SSL Encryption
  

Try DataDirect Drivers Now
Enabling SSL Encryption
The driver enables SSL encryption when accessing HTTPS endpoints specified using the REST Sample Path option, Host Name option, or input REST file. To successfully connect, you may also need to specify any additional options for Server or Client authentication that are required by your environment. See "Data Encryption Options" for a complete list of related options. The following examples demonstrate configuring SSL with using a connection string.
SSL Server Authentication
This connection string configures the driver to use the SSL Server Authentication method using the REST Sample Path option.
DRIVER=DataDirect 8.0 Autonomous REST Connector;
RestSamplePath='https://example.com/countries/';Truststore=TrustStoreName;
TruststorePassword=secret;
SSL Client Authentication
This connection string configures the driver to use the SSL Client Authentication method using the REST Sample Path option.
DRIVER=DataDirect 8.0 Autonomous REST Connector;
KeyPassword=keysecret;KeyStore=KeyStoreName;KeystorePassword=storesecret;
RestSamplePath='https://example.com/countries/';