I am very stuck with the following problem:
I need to make a JDBC connection through a Proxy in Talend.
If I use a system proxy (Proxifier in my case) it is working correctly:
But if I close the application and try to use Talend’s own proxy, I get the error:
However, the proxy is working since after performing the tSetProxy I make a REST call to find out my IP address and it is the proxy address, however when making the JDBC connection it is failing.
I have tried to configure the proxy also by parameters in Java but it doesn’t work either:
I don’t know what else to try. The JDBC connection is like:
jdbc:crossdata://XXXXX:10137/default?UID=XX-user;SSL=true;KEYSTORE=C:/XX/keystore_XX-user.jks;KEYSTORE_PWD=XX;TRUSTSTORE=C:/XX/truststore_XXl-user. jks;TRUSTSTORE_PWD=XX;MAX_CONTENT_LENGTH=2048M;LogLevel=INFO;LogPath=C:/XX/crossdata-jdbc-logs;LogFileSize=20MB;LogFileCount=4;TIMEOUT=0;LIMIT=-1
Can anyone help me with this problem?
Thanks & Regards.