Author |
Message
|
yellowbee |
Posted: Tue Jan 02, 2018 12:54 am Post subject: Afrikaans - CCSID |
|
|
 Acolyte
Joined: 14 Apr 2012 Posts: 58
|
Hi Masters,
As part of a requirement we need to parse the Message with special characters of Afrikaans language. I am trying to get the corresponding CCSID of the Afrikaans to parse the message ,but could not get any.
I tried searching on this forum and below URL, but did not help.
https://www-01.ibm.com/software/globalization/ccsid/ccsid_registered.html
Need help on this regarding the CCSID of Afrikaans language to parse the message. |
|
Back to top |
|
 |
abhi_thri |
Posted: Tue Jan 02, 2018 1:13 am Post subject: |
|
|
 Knight
Joined: 17 Jul 2017 Posts: 516 Location: UK
|
|
Back to top |
|
 |
yellowbee |
Posted: Tue Jan 02, 2018 2:30 am Post subject: |
|
|
 Acolyte
Joined: 14 Apr 2012 Posts: 58
|
Thanks Abhi for quick response.
Will try and let you know. |
|
Back to top |
|
 |
zpat |
Posted: Tue Jan 02, 2018 3:35 am Post subject: |
|
|
 Jedi Council
Joined: 19 May 2001 Posts: 5866 Location: UK
|
I thought that CCSID 037 was US EBCDIC? _________________ Well, I don't think there is any question about it. It can only be attributable to human error. This sort of thing has cropped up before, and it has always been due to human error. |
|
Back to top |
|
 |
fjb_saper |
Posted: Tue Jan 02, 2018 3:35 am Post subject: |
|
|
 Grand High Poobah
Joined: 18 Nov 2003 Posts: 20756 Location: LI,NY
|
yellowbee wrote: |
Thanks Abhi for quick response.
Will try and let you know. |
Just be aware that 037 is EBCDIC. If in doubt go for a mutibyte CCSID like UTF-8 and verify whether or not your parser supports it.  _________________ MQ & Broker admin |
|
Back to top |
|
 |
fjb_saper |
Posted: Tue Jan 02, 2018 3:39 am Post subject: |
|
|
 Grand High Poobah
Joined: 18 Nov 2003 Posts: 20756 Location: LI,NY
|
If you're looking for Afrikaans and can't find it, the closest would probably be Netherland...  _________________ MQ & Broker admin |
|
Back to top |
|
 |
rekarm01 |
Posted: Mon Jan 08, 2018 11:18 am Post subject: Re: Afrikaans - CCSID |
|
|
Grand Master
Joined: 25 Jun 2008 Posts: 1415
|
yellowbee wrote: |
As part of a requirement we need to parse the Message with special characters of Afrikaans language. I am trying to get the corresponding CCSID of the Afrikaans to parse the message, but could not get any. |
"Parse" is not quite the right word to describe writing or reading a message.
There is no specific ccsid that is unique to Afrikaans. Aside from Unicode, there are dozens of ASCII-based ccsids that can fully support it, including 819 (ISO 8859-1), or 923 (ISO 8859-15).
That link is specific to IBM i Series, so it may not be relevant elsewhere. But there are also dozens of EBCDIC-based ccsids, including 037, that can fully support Afrikaans.
It is up to the sending application to decide which ccsid to use when writing a message, and to pass that information along to the receiving application(s) in the associated MQ headers, so that the receiving applications can read the message correctly. |
|
Back to top |
|
 |
|