I have deployed couple of applications on WAS 8.5.5 Base version. These applications need to communicate with MQ to produce and consume messages. I have created a SVRCONN channel and respective CLNTCONN as well. I am trying to connect to MQ using CCDT/TAB file. When I am restarting the JVM/Application Servers, I am seeing errors as follows:
Listener Port ASYNCPORT will attempt to restart in 60 seconds Failed
to start MDB CrConsumerMsgAsync against listener port ASYNCPORT Unable
to start MDB Listener CrConsumerMsgSync
[2/18/17 21:12:57:738 CST] 00000069 SharedEJBRunt I WSVR0037I: Starting EJB jar: APP-INF/lib/producer-ejb.jar
[2/18/17 21:12:57:715 CST] 00000067 MDBListenerIm W WMSG0019E: Unable to start MDB Listener CrProducerMsg, JMSDestination jms/store/request : com.ibm.msg.client.jms.DetailedJMSException: JMSWMQ2020: Failed to connect to queue man ager 'QMGR15' with connection mode 'Client' and supplied CCDT URL 'file:///csapps/websphere/MQ/QMGRQ15.TAB', see linked exception for more information. 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.
Caused by: com.ibm.mq.MQException: JMSCMQ0001: WebSphere MQ call failed with compcode '2' ('MQCC_FAILED') reason '2278' ('MQRC_CLIENT_CONN_ERROR').
at com.ibm.msg.client.wmq.common.internal.Reason.createException(Reason.java:204)
Caused by: com.ibm.mq.jmqi.JmqiException: CC=2;RC=2278;AMQ9555: File format error. [3=file:/csapps/websphere/MQ/QMGR15.TAB]
I am having 3 MDB listeners in total. They all defined at one scope, no duplicates. Two of them are able to start, but not ASYNCPORT. my current MQ version is: 8.0.0.3. I have generated TAB file on MQ 7.x as well to test my luck with it, nevertheless am ending up with same error.
I really appreciate your help if you can help me on this :)