I have a "blackbox" application written in Java that connects to MQ. On unix server there is MQ Client installation version 7.5.0. Java application is using 1.7.0_79. I have to use SSL_RSA_WITH_AES_256_CBC_SHA256
to make the connection.
I cannot upgrade to MQ Client v8. I am not entirely sure if I can connect having MQ Client version 7.5.0 and for instance use SSL_RSA_WITH_AES_256_CBC_SHA256
.
Would be that even possible to establish connection having these components ?
IBM added support for non-IBM Java cipher suite names via APAR IV66840, this was included in MQ v7.5.0.5.
What you are asking should be possible if you have the following:
-Dcom.ibm.mq.cfg.useIBMCipherMappings=false
System.setProperty("com.ibm.mq.cfg.useIBMCipherMappings", "false")
TLS_RSA_WITH_AES_256_CBC_SHA256
.SSL_
for Oracle java.