I am getting the following exception when I am trying to connect to MQ 7.5 from Java.
Please check if the supplied username and password are correct on the QueueManager to which you are connecting. at com.ibm.msg.client.wmq.common.internal.Reason.reasonToException(Reason.java:521) at com.ibm.msg.client.wmq.common.internal.Reason.createException(Reason.java:221) at com.ibm.msg.client.wmq.internal.WMQConnection.(WMQConnection.java:425) at com.ibm.msg.client.wmq.factories.WMQConnectionFactory.createV7ProviderConnection(WMQConnectionFactory.java:6902) at com.ibm.msg.client.wmq.factories.WMQConnectionFactory.createProviderConnection(WMQConnectionFactory.java:6277) at com.ibm.msg.client.jms.admin.JmsConnectionFactoryImpl.createConnection(JmsConnectionFactoryImpl.java:285) at com.ibm.mq.jms.MQConnectionFactory.createCommonConnection(MQConnectionFactory.java:6233) at com.ibm.mq.jms.MQConnectionFactory.createConnection(MQConnectionFactory.java:6262) . . Caused by: com.ibm.mq.MQException: JMSCMQ0001: WebSphere MQ call failed with compcode '2' ('MQCC_FAILED') reason '2035' ('MQRC_NOT_AUTHORIZED'). at com.ibm.msg.client.wmq.common.internal.Reason.createException(Reason.java:209) ... 9 more
I found this solution:
http://www-01.ibm.com/support/docview.wss?uid=swg21577137
but altering authorization of queue manager via rumqsc by:
ALTER QMGR CHLAUTH(DISABLED)
does not work. I am still getting the exception even after restarting the queue manager and the listener as well.
Any help would be much appreciated.