Welcome to the new Parasoft forums! We hope you will enjoy the site and try out some of the new features, like sharing an idea you may have for one of our products or following a category.
Virtual asset Error: " MQJE001: Completion Code '2', Reason '2397 (MQRC_JSSE_ERROR)"
jyothikilaru
Posts: 6 ✭
in Virtualize
Created virtual asset for MQ and when we deployed it on local server , we are getting below error
"MQJE001: Completion Code '2', Reason '2397 (MQRC_JSSE_ERROR)" SSL error.
Could you please let me know where do we mention cipher suite details ?
0
Comments
-
You would need scripting and a PVN file in order to deploy a Virtual Asset which interacts with an MQ instance using SSL. Here's the Jython script to set the values:
from com.ibm.mq import *
from java.lang import *def setupMqEnvironment():
MQEnvironment.sslCipherSuite =
MQEnvironment.sslPeerName =
System.setProperty("javax.net.ssl.trustStore","")
System.setProperty("javax.net.ssl.keyStore","")
System.setProperty("javax.net.ssl.keyStorePassword","")0