Get "6E 00" APDU response
Posted: Sat Dec 05, 2015 3:32 am
I am testing an EMV card. After a successful selection of the EMV application, when I send the APDU command--Get Processing Options with class value 0x80, it threw SW=6E 00 (CLA value not supported).
Here is my command.
Send: 0x80 0xA8 0x00 0x00 0x02 0x83 0x00 0x00
Recv: 0x6E 0x00
Part of my code:
I don't have any clues about this issue. Why did I get the response 6E 00?
Here is my command.
Send: 0x80 0xA8 0x00 0x00 0x02 0x83 0x00 0x00
Recv: 0x6E 0x00
Part of my code:
Code: Select all
byte[] myPDOLData={ (byte) 0x83, 0x00};
CommandAPDU myComm = new CommandAPDU((byte)0x80, (byte)0xA8, 0x00, 0x00, myPDOLData, 0x00);
myChannel.transmit(myCom);
I don't have any clues about this issue. Why did I get the response 6E 00?