I try to access a SmartCard via C++. I got already the Connection and the CardHandle.

But when I send an APDU Command via SCardTransmit, i'll get 6E 00 as the answer from the card. No matter which APDU Command i send. Everytime 6E 00.

For Example: FF CA FA 00 00 (Card's ATR) or FF CA FF 82 00 (Product name in ASCII)

The same thing when i send the Command with an PC/SC Testtootl like "PC/SC Diag".

Has anybody an Idea what the meaning of this Error-Code and how to solve the problem?

Please help me !!!! ;-)

link|improve this question
feedback

2 Answers

up vote 2 down vote accepted

According to ISO 7816-4 0x6E00 means "Class not supported".

Are you using the correct CLA value in the APDU?

The class (CLA) byte is usually 0x00, 0xA0, 0xC0 or 0xF0 and sometimes masked with 0x0C that indicates Secure Messaging on some cards. AFAIK, the only invalid CLA value is 0xFF.

But this varies from one card to another, do you have the card specification from the vendor?

link|improve this answer
Ah ok, when i use 0C or 00 i've got another Errorcode 6A 86. Where can i find a list of Errorcodes. I don't have the specification from the vendor – Pusher Jul 7 '11 at 11:10
You should read the ISO 7816-4 standard first before sending APDUs to the card. – Jonas Gulle Jul 7 '11 at 11:14
0x6a86 means "Incorrect parameters P1-P2" – Jonas Gulle Jul 7 '11 at 11:15
1  
Ok thanks, i promise to read it. But i just want to get an answer from the card, so that i know every thing works fine. Can you tell me an easy apdu which i can send? – Pusher Jul 7 '11 at 11:22
1  
Thanks, it works !!!! – Pusher Jul 7 '11 at 11:40
show 1 more comment
feedback

It means "Wrong Instruction Class". Maybe it's just the wrong type of card?

http://tools.ietf.org/html/draft-urien-eap-smartcard-05

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.