Bypass certificate validation to remote Talend Administrator server
Hi,
We currently have TIS 4.0.1 installed. Our Talend Administrator is installed on a remote server and the URL is https and the certificate is self-signed.
When opening the TIS Client to open the project, it cannot connect to the Talend Administrator because it cannot bypass the certificate validation (The error is simply 'unable to access the url...'). Is there a way in the Client config to add exception to bypass certification validation for this URL?
Thanks.
One more data point. We can use Microsoft IE browser to access Talend Administration web application using the same URL and HTTPS protocal without problem. However, if we use the same URL in TIS 4.0.1, then we are not able to access the projects.
Dear mhirt,
I do not have access to the support case that is logged by other customer. Would you please provide the answer in this forum or copy the answer to my company's support case?
Thanks,
Truststore and keystore are used by java to store the certificates.
Create a keystore in java using commandline java application (
http://www.sslshopper.com/article-most-common-java-keytool-keystore-commands.html)
Then Starts the product with a reference to this keystore file by setting the JVM settings to specify keystore location, password(s):
-Djavax.net.ssl.keyStore=path_to_keystore_file
-Djavax.net.ssl.keyStorePassword=password
-Djavax.net.ssl.trustStore=path_to_truststore_file
-Djavax.net.ssl.trustStorePassword=password
HTH
where is the JVM setting file ? It's the ini file TISTE-win32-x86.ini ? If i configure this file like that, it's ok ? -vmargs -Xms64m -Xmx768m -XX:MaxPermSize=256m -Djavax.net.ssl.keyStore=C:\Temp\security\keystore.jks -Djavax.net.ssl.keyStorePassword=test -Djavax.net.ssl.trustStore=C:\Temp\security\keystore.jks -Djavax.net.ssl.trustStorePassword=test