ahmedKanoun / fixparser

Automatically exported from code.google.com/p/fixparser
0 stars 0 forks source link

Support For Binary Tags #1

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. Parse a FIX message containing binary fields
2. TagValue<String, String>#value() returns binary data as string.. need to
think how to handle it properly.

What is the expected output? What do you see instead?
1. FIX message is parsed out
2. Binary field is accessible and contains right value

Original issue reported on code.google.com by LShlyapn...@gmail.com on 22 Feb 2008 at 4:07

GoogleCodeExporter commented 8 years ago

Original comment by LShlyapn...@gmail.com on 22 Feb 2008 at 4:07

GoogleCodeExporter commented 8 years ago
See FIX datatypes: 
http://fixprotocol.org/FIXimate3.0/en/FIX.5.0SP1/fix_datatypes.html

data    String  

containing raw data with no format or content restrictions. Data fields are 
always
immediately preceded by a length field. The length field should specify the 
number of
bytes of the value of the data field (up to but not including the terminating 
SOH).
Caution: the value of one of these fields may contain the delimiter (SOH) 
character.
Note that the value specified for this field should be followed by the delimiter
(SOH) character as all fields are terminated with an “SOH”.

Original comment by LShlyapn...@gmail.com on 20 Dec 2008 at 4:54