我们正在使用以下代码和设置来连接到iSeries上的IBM Websphere Message Queue(IBM(R)WebSphere(R) MQ V6.0.1 版本)。
我们针对同一个MQ使用相同的uid和pwd用于三个不同的应用程序
我们在一天中间歇性地发现MQRC_NOT_AUTHORIZED
和MQRC_Q_MGR_NOT_AVAILABLE
错误,但获取消息方法总是。
设置:
使用以下设置创建连接属性的HashTable:
MQC.TRANSPORT_PROPERTY = MQC.TRANSPORT_MQSERIES_MANAGED
MQC.CHANNEL_PROPERTY = SYSTEM.DEF.SVRCONN
MQC.HOST_NAME_PROPERTY = IP Address
我们使用以下打开选项:
MQC.MQOO_INPUT_AS_Q_DEF + MQC.MQOO_FAIL_IF_QUIESCING + MQC.MQOO_INQUIRE
class WebSphereMQ
{
public bool impStatus { get; set; }
public MQQueueManager gMQQueueManager;
public MQQueue gMQQueue;
private MQMessage queueGetMessage { get; set; }
private MQGetMessageOptions queueGetMessageOptions { get; set; }
public MQQueueManager pMQQueueManager;
public MQQueue pMQQueue;
private MQMessage queuePutMessage { get; set; }
private MQPutMessageOptions queuePutMessageOptions { get; set; }
public WebSphereMQ()
{
impStatus = impersonation.impersonateValidUser(Common.impNme, "", Common.impPwd);
gMQQueueManager = null;
gMQQueue = null;
if (gMQQueue != null && gMQQueue.IsOpen)
{
// Just incase
gMQQueue.Close();
gMQQueueManager.Disconnect();
}
}
public bool connectMQGet(string QMgr, string QName, Hashtable connectionProperties, bool BrowseOnly, string QType)
{
try
{
gMQQueueManager = new MQQueueManager(QMgr, connectionProperties);
if (gMQQueueManager != null && QType == "OUT")
{
if (BrowseOnly)
gMQQueue = gMQQueueManager.AccessQueue(QName, MQC.MQOO_INPUT_AS_Q_DEF + MQC.MQOO_BROWSE + MQC.MQOO_FAIL_IF_QUIESCING + MQC.MQOO_INQUIRE);
else
gMQQueue = gMQQueueManager.AccessQueue(QName, MQC.MQOO_INPUT_AS_Q_DEF + MQC.MQOO_FAIL_IF_QUIESCING + MQC.MQOO_INQUIRE);
}
}
catch (MQException mqe)
{
if (impStatus) impersonation.undoImpersonation();
/* Write to log */
Common.logBuilder("WebSphereMQ --> connectMQGet <--", "MQException", Common.ActiveMQ, mqe.Message, "Exception");
/* Send email to support */
emailer.exceptionEmail(mqe);
return false;
}
return true;
}
以下是错误和堆栈跟踪的示例:
An MQException has happened on 30 June 2015 at 08:52A
Message ---
MQRC_NOT_AUTHORIZED
HelpLink ---
Source ---
amqmdnet
StackTrace ---
at IBM.WMQ.MQBase.throwNewMQException() at IBM.WMQ.MQQueueManager.Connect(String queueManagerName) at IBM.WMQ.MQQueueManager..ctor(String queueManagerName, Hashtable properties) at EvryCardManagement.WebSphereMQ.connectMQGet(String QMgr, String QName, Hashtable connectionProperties, Boolean BrowseOnly, String QType)
那么我可以在客户端更改一些设置以防止我们获得这些异常,或者这是否需要在iSeries / MQ上进行修改?
我们是否应该尝试使用不同的uid来处理命中MQ的三个不同应用程序?
答案 0 :(得分:3)
MQ V6早就停止服务了。您需要将队列管理器升级到支持的版本。
就2035年的例外情况而言,有多种方法可以解决它:
1)您的MQ .NET应用程序必须存在于iSeries上并且有权连接到队列管理器的用户标识。
2)在iSeries队列管理器上的SYSTEM.DEF.SVRCONN上设置MCAUSER。
2035年的原因代码有很多帖子。查看T.Rob的以下帖子以及这些帖子中的链接。
Authorization with Websphere MQ 6
WebSphere 7, configuring JMS Q connection factory without user id: MQRC_NOT_AUTHORIZED