-
-
Notifications
You must be signed in to change notification settings - Fork 148
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Iso8583Decoder doesn't handle messages with header #41
Comments
Well, the I have created an enhancement request for our friends in In case the enhancement is accepted, there will be:
I will post updated on my request here once it is resolved. |
@ouadi, thank you for investigation |
j8583 repo has moved here: https://bitbucket.org/chochos/j8583 |
Hi ouadi, did you find a solution for this? |
Yes, indeed It has been long time I remember very vaguely the solution I have implemented I will share with you what I recall, but it could be incomplete:
Hope this will help |
The
Iso8583Decoder
doesn't handle messages with header.The
parseMessage()
at line 29 inIso8583Decoder
final IsoMessage isoMessage = messageFactory.parseMessage(bytes, 0);
Is called with second argument set to
0
.Shouldn't be called with second argument set to the length of the header?
The text was updated successfully, but these errors were encountered: