How to store passwords to SSL keys

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!

Hi evanchen,

This question is actually not related to CloverETL Server, it is a matter of your application server which needs to be pointed to the JAVA_OPTS. But I do not think the requested security is possible. See the following answer on StackOverflow.