I am trying to implement the communication between the smart card and the smart card reader on the blackberry simulator.
And according I have implemented the SmartCard and the SmartCardSession class and also the SmartCardReader and the SmartCardReaderSession class.
I am unable to send the apdu for it to communicate. The code snippet is as shown below. I would appreciate all the help in this regard. Please indicate where I am going wrong or what else I have to implement.
CommandAPDU commandAPDU = new CommandAPDU( (byte)0x00, (byte)0x20, (byte)0x00, (byte)0x00);
byte[] LcData= {(byte)0x01, (byte)0x02, (byte)0x03};
ResponseAPDU responseAPDU = new ResponseAPDU();
SmartCardReaderSession readerSession= reader.openSession();
readerSession.sendAPDU(commandAPDU, responseAPDU);
commandAPDUandresponseAPDUobjects? Do you get any errors in the log? (Hold downaltand typeLGLG(but in lowercase;llooks stupid in most fonts) at the home screen.) – sarnold May 10 '11 at 4:16