when I use below codes to connect to IBM MQ using client mode, I got MQJMS2005 exception MQQueueConnectionFactory cf = new MQQueueConnectionFactory();

        cf.setPort(port);
        cf.setHostName(host);
        cf.setChannel(channel);
        cf.setTransportType(JMSC.MQJMS_TP_CLIENT_MQ_TCPIP);
        cf.setQueueManager(queuemanager);

        conn = (MQQueueConnection)cf.createQueueConnection();

I use 'com.ibm.mq.jar', 'com.ibm.mqjms.jar', 'dhbcore.jar', 'jmscommon.jar', 'j2ee.jar',

I assume this might be something related to permission, because the same code can work fine on another machine when connecting to another host/port/channel/queue manager/queue

The error stacktrace is javax.jms.JMSException: MQJMS2005: failed to create MQQueueManager for 'host:queuemanager' at com.ibm.mq.jms.services.ConfigEnvironment.newException(ConfigEnvironment.java:644) at com.ibm.mq.jms.MQConnection.createQM(MQConnection.java:2591) at com.ibm.mq.jms.MQConnection.createQMNonXA(MQConnection.java:1936) at com.ibm.mq.jms.MQQueueConnection.(MQQueueConnection.java:161) at com.ibm.mq.jms.MQQueueConnectionFactory.createQueueConnection(MQQueueConnectionFactory.java:206) at com.ibm.mq.jms.MQQueueConnectionFactory.createQueueConnection(MQQueueConnectionFactory.java:126) at MQTest.init(MQTest.java:51)

link|improve this question

59% accept rate
feedback

3 Answers

Can you post the complete stack of the exception that includes MQ Reason code also? MQ Reason code will help identifying the cause.

link|improve this answer
thx, it's been a long time, so far as i can remember it's due to permission setting – hetaoblog Feb 3 at 1:46
feedback

later I found out that it's due to permission issues. when connecting to MQ using client mode, the MQ can be configured with permission settings such as allowed client ip; In my previous case, the machine is not added to the allowed list;

while the other app running fine actually is using bind mode rather than client mode. so it's bind to one allowed user id.

link|improve this answer
OK. Looks like you are using BlockIP exit. – Shashi Feb 3 at 9:42
feedback

I came across the same problem. It's to do with no of channels or some setting on MQ Queuemanager xml or Websphere MQ Installation. This might help.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.