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
First thanks for this awesome library.
I am using this for some IFSF messages encode/decode at client side application.
i have some custom requirement t support subfields at 48 position. It has bitmap + 48.1, 48.2, 48.3 ... very much same as 127.25
i can not use "LLLVAR ans" because it is at host side the field content is treated as binary similar to fixed binary field.
here is test case attached for the above requirement.
import test from 'ava';
import iso8583 from '../lib/8583.js';
/*
Support custom iso 8583 formats
Support Case: Binary var field encode decode
*/
test('iso8583 Ext - binary var field must be encoded', t => {
const format = {
2: {
ContentType: 'b',
Label: 'F1',
LenType: 'llvar',
MaxLen: 99
},
};
const data = {
0: '0800',
'2': '1004000000000000303030303030303030343048'
// #2 is prepard by encodng subfields - 8bytes bitmap followed by subfields data
};
let isopack = new iso8583(data, format);
let buff = isopack.getRawMessage();
const iso1 = new iso8583(undefined, format).getIsoJSON(buff, {lenHeader: false});
t.deepEqual(iso1, data);
let isopack1 = new iso8583(iso1);
t.is(isopack1.Msg['2'], '1004000000000000303030303030303030343048');
});
The text was updated successfully, but these errors were encountered:
arajput
changed the title
Custom Format Support - Binary variable field within first 127 fields
Custom Format Support - variable binary field within first 127 fields
Aug 27, 2022
First thanks for this awesome library.
I am using this for some IFSF messages encode/decode at client side application.
i have some custom requirement t support subfields at 48 position. It has bitmap + 48.1, 48.2, 48.3 ... very much same as 127.25
i can not use "LLLVAR ans" because it is at host side the field content is treated as binary similar to fixed binary field.
here is test case attached for the above requirement.
The text was updated successfully, but these errors were encountered: