Author |
Message
|
srinivasmmdl |
Posted: Mon Jun 03, 2013 10:09 pm Post subject: ISO8583 Message Conversion |
|
|
Novice
Joined: 27 Feb 2013 Posts: 11
|
Hi ,
I have working on ISO8583_1987.How does "Encoding page(US-ASCII/any)" effects the bitmap conversion.  |
|
Back to top |
|
 |
lancelotlinc |
Posted: Tue Jun 04, 2013 3:23 am Post subject: |
|
|
 Jedi Knight
Joined: 22 Mar 2010 Posts: 4941 Location: Bloomington, IL USA
|
|
Back to top |
|
 |
srinivasmmdl |
Posted: Tue Jun 04, 2013 10:38 pm Post subject: ISO8583 Message |
|
|
Novice
Joined: 27 Feb 2013 Posts: 11
|
A0000000000000000000000004000000 This is my hex-decimal which represents primary bitmap and secondary bitmap.
The binary representation of this is 10100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000
Here bit 1,3,102 present bit1 tells that secondary bitmap presence and
field 3 ProcessingCode_003 and field 102 Account_102.
But when i parse this using ISO Library(ISO8583.xsd) it's not parsing the message instead of field 1,3,102 it's assigning values to other bits.
(We are using the US-ASCII encoded page)
How can i parse this message.
Thanks In Advance,
Srinivas M |
|
Back to top |
|
 |
lancelotlinc |
Posted: Wed Jun 05, 2013 3:06 am Post subject: |
|
|
 Jedi Knight
Joined: 22 Mar 2010 Posts: 4941 Location: Bloomington, IL USA
|
Have you exercised the ISO8583 sample? If so, what did you discover?
What nodes do you have on your canvas?
What is your input data example?
What is the purpose of your flow?
Have you put any Trace nodes? If so, what output is in the Trace nodes?
Have you taken a user trace? If so, what does your user trace tell you?
Have you attended the required nine days of training? _________________ http://leanpub.com/IIB_Tips_and_Tricks
Save $20: Coupon Code: MQSERIES_READER |
|
Back to top |
|
 |
srinivasmmdl |
Posted: Wed Jun 05, 2013 11:04 pm Post subject: ISO 8583 |
|
|
Novice
Joined: 27 Feb 2013 Posts: 11
|
0200A0000000000000000000000004000000123456789987456123
This is my sample ISO message and the bits A0000000000000000000000004000000 are bit maps.If we convert this bitmap to binary it shows the presence of bits 1,3 and 102.
I am sending this message to MQInputNode and configured it to use "ISO8583Library" (ISO8583.xsd) file which has given with the samples.
After parsing this ISO8583 message it showing other bits as presence instead of bits 1,3 and 102.
The ISO8583.xsd taking A's ASCII value(65) and converting it to binary (01100101) and assigning these values to ISO8583 bitmaps(primary and secondary).
Is there any way that the ISO8583 treats bitmaps as HEXA not as ASCII. |
|
Back to top |
|
 |
lancelotlinc |
Posted: Thu Jun 06, 2013 3:22 am Post subject: |
|
|
 Jedi Knight
Joined: 22 Mar 2010 Posts: 4941 Location: Bloomington, IL USA
|
HAVE YOU PUT ANY TRACE NODES ? IF SO, POST THE OUTPUT OF YOUR TRACE NODES.
HAVE YOU ATTENDED THE NINE DAYS OF TRAINING ? _________________ http://leanpub.com/IIB_Tips_and_Tricks
Save $20: Coupon Code: MQSERIES_READER |
|
Back to top |
|
 |
kimbert |
Posted: Mon Jun 10, 2013 3:36 am Post subject: |
|
|
 Jedi Council
Joined: 29 Jul 2003 Posts: 5542 Location: Southampton
|
Quote: |
I have working on ISO8583_1987.How does "Encoding page(US-ASCII/any)" effects the bitmap conversion. |
Not at all. The encoding only affects elements which are represented as text ( elements which have the dfdl property 'representation' set to 'text' ).
Quote: |
I am sending this message to MQInputNode and configured it to use "ISO8583Library" (ISO8583.xsd) file which has given with the samples.
After parsing this ISO8583 message it showing other bits as presence instead of bits 1,3 and 102.
The ISO8583.xsd taking A's ASCII value(65) and converting it to binary (01100101) and assigning these values to ISO8583 bitmaps(primary and secondary). |
My guess is that you are submitting ASCII data instead of binary data. ISO8583 is a binary format. You need to convert the the data to raw bytes before submitting the message. |
|
Back to top |
|
 |
|