我有一个在 WebSphere 中运行的 MDB,当它尝试从 MQ 队列中提取消息时,会引发以下异常:
com.ibm.mq.MQException:找不到消息目录
知道如何解决这个问题吗?
我有一个在 WebSphere 中运行的 MDB,当它尝试从 MQ 队列中提取消息时,会引发以下异常:
com.ibm.mq.MQException:找不到消息目录
知道如何解决这个问题吗?
将包含mqji.properties文件的目录添加到 CLASSPATH
由于您将通过消息目录获得的错误消息也非常无用,因此这里有一个 mq.jar 的小补丁:
将此代码添加到 MQException:
// PATCH New fields
private final static IntHashMap completionCodes = new IntHashMap ();
private final static IntHashMap reasonCodes = new IntHashMap ();
static
{
addCodes (completionCodes, "MQCC_");
addCodes (reasonCodes, "MQRC_");
}
/**
* PATCH Create a map of names for the MQ error codes
*
* @param map
* @param prefix
*/
private static void addCodes(IntHashMap map, String prefix)
{
Field[] field = MQException.class.getFields();
try
{
for (int i = 0; i < field.length; i++)
{
String name = field[i].getName();
if (name.startsWith(prefix))
{
name = name.substring(prefix.length());
int value = field[i].getInt(null);
map.put (value, name);
}
}
}
catch (IllegalArgumentException e) {
throw new RuntimeException (e);
}
catch (IllegalAccessException e) {
throw new RuntimeException (e);
}
}
替换getMessage()
为以下代码:
// PATCH Complete rewrite
public String getMessage()
{
if(ostrMessage == null) {
String rc = (String)reasonCodes.get(reasonCode);
if (rc == null)
rc = "ReasonCode "+reasonCode;
String cc = (String)completionCodes.get(completionCode);
if (cc == null)
cc = "CompletionCode "+completionCode;
String message = "MQJE001: "+cc+" "+rc;
if(msgId == 0)
ostrMessage = message;
else {
String s = msgId+" {0} {1}";
if (exceptionMessages != null) {
s = exceptionMessages.getString(Integer.toString(msgId));
}
if(numInserts > 0) {
Object as1[] = new String[numInserts];
if(numInserts > 0) as1[0] = insert1;
if(numInserts > 1) as1[1] = insert2;
s = MessageFormat.format(s, as1);
}
ostrMessage = message+"\n"+s;
}
if (underlyingException != null)
ostrMessage = ostrMessage + "\n" + underlyingException.getMessage();
}
return ostrMessage;
}
要么将这两个类编译到一个新的 jar 中,要么修补原始的 mq.jar。
而不是 MQJE001: RC 2 CC 2035,你会得到“MQJE001: FAILED NOT_AUTHORIZED”
mqji.properties 文件已包含在 mq jar 文件中。
未找到消息目录异常作为“MQJMS2002:无法从 MQ 队列获取消息”的一部分引发。
事实证明,这个错误被抛出是因为我在服务器级别(在 WebSphere v6 服务器上)定义了队列连接工厂,并且使用了错误的类加载器来加载上述属性文件。
我通过在单元级别重新定义工厂解决了这个问题。