Author |
Message
|
jchen |
Posted: Fri Mar 30, 2012 2:06 am Post subject: MQ 7.1 doesn't work with JMS |
|
|
Newbie
Joined: 27 Mar 2012 Posts: 3
|
Hi,
I got the exception when I used JMS connection to my MQ 7.1.
MQJE001: Completion Code '1', Reason '2119'
The event log is
Code: |
Conversion not supported.
WebSphere MQ is unable to convert string data tagged in CCSID 1381 to data in CCSID 819.
Check the WebSphere MQ Application Programming Reference Appendix and the appropriate National Language Support publications to see if the CCSIDs are supported by your system. |
How shall I resolve it? |
|
Back to top |
|
 |
bruce2359 |
Posted: Fri Mar 30, 2012 3:49 am Post subject: |
|
|
 Poobah
Joined: 05 Jan 2008 Posts: 9469 Location: US: west coast, almost. Otherwise, enroute.
|
Did you
Quote: |
Check the WebSphere MQ Application Programming Reference Appendix and the appropriate National Language Support publications to see if the CCSIDs are supported by your system. |
? _________________ I like deadlines. I like to wave as they pass by.
ב''ה
Lex Orandi, Lex Credendi, Lex Vivendi. As we Worship, So we Believe, So we Live. |
|
Back to top |
|
 |
Vitor |
Posted: Fri Mar 30, 2012 4:38 am Post subject: Re: MQ 7.1 doesn't work with JMS |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
jchen wrote: |
How shall I resolve it? |
Install the conversion table 1381 -> 819 into your OS? If supported? As my associate indicated?
Code all messages in Unicode?
Code all messages in 819?
Inhibit the conversion of messages from one code page to another?
Other means of eliminating the error are undoubtably possible. _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
mqjeff |
Posted: Fri Mar 30, 2012 5:12 am Post subject: |
|
|
Grand Master
Joined: 25 Jun 2008 Posts: 17447
|
Tell the JMS app to configure things so that Java performs the conversion instead of the queue manager? |
|
Back to top |
|
 |
jchen |
Posted: Sun Apr 01, 2012 11:10 pm Post subject: |
|
|
Newbie
Joined: 27 Mar 2012 Posts: 3
|
Guys,
It's resolved after I define default conversion CCSIDs. Just uncomment the following code in ccsid.tbl.
Code: |
default 0 500 1 1 0
default 0 850 1 2 0
|
|
|
Back to top |
|
 |
Vitor |
Posted: Mon Apr 02, 2012 4:05 am Post subject: |
|
|
 Grand High Poobah
Joined: 11 Nov 2005 Posts: 26093 Location: Texas, USA
|
jchen wrote: |
It's resolved after I define default conversion CCSIDs. |
Told you.  _________________ Honesty is the best policy.
Insanity is the best defence. |
|
Back to top |
|
 |
|