MQRC_从iSeries Websphere消息队列获取消息时出错
本文关键字:消息 队列 获取 出错 Websphere iSeries MQRC | 更新日期: 2023-09-27 18:00:37
我们使用以下代码和设置连接到iSeries上的IBM Websphere Message Queue(版本IBM(R)Websphere(R)MQ V6.0.1)。
我们对同一MQ的三个不同应用程序使用相同的uid和pwd
我们在一天中间歇性地得到MQRC_NOT_AUTHORIZED
和MQRC_Q_MGR_NOT_AVAILABLE
错误,但在get消息方法上总是。
设置:
连接属性的哈希表使用以下设置创建:
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上进行修改的内容?
我们是否应该尝试为访问MQ的三个不同应用程序使用不同的uid?
MQ V6早就停止服务了。您需要将队列管理器升级到受支持的版本。
就2035年的例外情况而言,有多种方法可以解决:
1) MQ.NET应用程序必须存在于iSeries上并具有连接到队列管理器的权限的用户id。
2) 在iSeries队列管理器的SYSTEM.DEF.SVRCONN上设置MCAUSER。
关于2035原因代码有很多帖子。看看T.Rob的以下帖子和这些帖子中的链接。
使用Websphere MQ 6 进行授权
WebSphere 7,在没有用户id的情况下配置JMS Q连接工厂:MQRC_NOT_AUTHORIZED