i created a file in a smart card using this apdu command :
String apdu = "90CD00000700000E0EA0000000";
channel.transmit(new CommandAPDU(DatatypeConverter.parseHexBinary(apdu)));
the file is successefuly created , however i can't write data in that file , i tried this command :
String apdu = "903D00003B00000000000034" + data + "00";
but it failed with a response : sw1 91 sw2 BE (Out of boundary)
what is the problem about this file ?