You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We need the ability to turn off the X12Parser exceptions when creating an instance of the EligibilityTransformationService. Currently it keeps throwing an exception that the "ISA" line must have exactly 106 chars (IT DOES only have 106 chars but still throws this error). I don't understand WHY you would want to validate an incoming file you are trying to parse anyway, as we all know that almost no one conforms to the standards.
Anyway, I will reverse engineer the transformation code for now, but all Transforms need to be able to be passed in an existing instance of an X12Parser so we can set other options on them.
The text was updated successfully, but these errors were encountered:
Nevermind, I feel dumb. After writing data I needed to parse into a MemoryStream, I forgot to set the stream back to the beginning. This fixed the issue (stream.Position = 0).
We need the ability to turn off the X12Parser exceptions when creating an instance of the EligibilityTransformationService. Currently it keeps throwing an exception that the "ISA" line must have exactly 106 chars (IT DOES only have 106 chars but still throws this error). I don't understand WHY you would want to validate an incoming file you are trying to parse anyway, as we all know that almost no one conforms to the standards.
Anyway, I will reverse engineer the transformation code for now, but all Transforms need to be able to be passed in an existing instance of an X12Parser so we can set other options on them.
The text was updated successfully, but these errors were encountered: