Good day. I can't beat this error.
I send xml message and the given error falls.
Is there a problem with the send configuration on my side or is it something else?
JMSWMQ0018: Failed to connect to queue manager 'QM1' with connection mode 'Client' and host name 'localhost(1414)'.; nested exception is com.ibm.msg.client.jms.DetailedIllegalStateException: JMSWMQ0018: Failed to connect to queue manager 'QM1' with connection mode 'Client' and host name 'localhost(1414)'.
Check the queue manager is started and if running in client mode, check there is a listener running. Please see the linked exception for more information.; nested exception is com.ibm.mq.MQException: JMSCMQ0001: IBM MQ call failed with compcode '2' ('MQCC_FAILED') reason '2538' ('MQRC_HOST_NOT_AVAILABLE').
2538' ('MQRC_HOST_NOT_AVAILABLE')
, this means that the MQ client was unable to connect tolocalhost(1414)
, can you try a simpletelnet localhost 1414
to see if you can connect? Also worth checking to see if you find any corresponding errors in the queue managersAMQERR01.LOG
. – JoshMc