Donate. I desperately need donations to survive due to my health

Get paid by answering surveys Click here

Click here to donate

Remote/Work from Home jobs

Caused by: java.security.cert.CertificateException: No X509TrustManager implementation available in tRESTClient on Talend

Getting this error with tRESTClient on Talend. I have imported the .cer unsigned certificate to .jks keystore created in jre\bin location using below command:

keytool –importcert –keystore secure.jks –storepass mypassword10 –file <certificate local path>

I am also setting below properties using tJava before tRESTClient:

System.setProperty("javax.net.ssl.truststore","C:/Program Files (x86)/Java/jre1.8.0_192/bin/secure.jks");
System.setProperty("javax.net.ssl.trustStorePassword","mypassword10");
System.setProperty("javax.net.ssl.trustStoreType", "jks");

Comments