Hi,
I need to set below JVM arguments into CloverETL Server which will be used to communicate with another server in SSL mode while the graph is running:
-Djavax.net.ssl.trustStore=***
-Djavax.net.ssl.trustStorePassword=***
-Djavax.net.ssl.keyStore=***
-Djavax.net.ssl.keyStorePassword=***
The way I know is to configure it in the application server container, e.g. Weblogic:
export JAVA_OPTIONS="
-Djavax.net.ssl.trustStore=***
-Djavax.net.ssl.trustStorePassword=***
-Djavax.net.ssl.keyStore=***
-Djavax.net.ssl.keyStorePassword=***"
However it will be plain text and not secured.
Is there any graceful way to configure the above arguments in the level of CloverETL Server?
Other advices are also welcomed.
Thanks!