I have been in the process of implementing support for packed decimal, BCD, and Ibm4690Packed binary formats and while I belive I have implemented the parsers and unparsers for these correctly, I am running into an issue getting the IBM4690-TLOG schema project running. Both the ACE and SA schemas make use of lengthKind="delimited" with ':' as the separator. Currently there is no support for delimited binary data in the codebase, as we did not have support for these packed formats and lengthKind="delimited" is only allowed on packed formats according to the spec.
So, I'm guessing I will need to add a binary delimited parser in order to handle this data as I am assuming that the the TextDelimitedParser will not work with binary data? I just want to verify that I am headed in the right direction before committing a bunch of time to implementing a new delimited parser. Thanks, Josh
