0

How can I convert MQ API exception text to more descriptive text in my java app?
sample exception message >"MQJE001: Completion Code '2', Reason '2038'"
To > "An MQINQ call was issued to inquire object attributes, but the object had not been opened for inquire."
I have access to completion and reason code but not description.
Thanks

Morag Hughson
  • 7,255
  • 15
  • 44
Moh Tarvirdi
  • 685
  • 1
  • 13
  • 25
  • There is MQRC command that gives a little more info. Like 2038 0x000007f6 MQRC_NOT_OPEN_FOR_INQUIRE. – Shashi Dec 30 '13 at 04:39

1 Answers1

-1

Go have a look at my open source projects: MQRC2 and MQRC2-GUI. http://www.capitalware.biz/mqrc2_overview.html

MQRC2 is a command-line program and MQRC2-GUI is a Java/Swing program.

Roger
  • 7,062
  • 13
  • 20