I am using a message-driven-channel-adapter to read messages off MQ queue, and this has been working fine in development. Now, in preparation for the first production release, I have to read a secured queue instead.
What do I need to do?
I think I need to make sure the following are set as system properties, but with what values?
javax.net.ssl.trustStore
javax.net.ssl.trustStorePassword
javax.net.ssl.keyStore
javax.net.ssl.keyStorePassword
I get the connectionFactory from jndi and it has the SSLCipherSuite set.
I have been given a clear text password and a JKS file that contains both the keystore and the truststore
What do I need to do next?