0

I now have a Hello World project according this link and I made its .cap

file successfully. I have "DE-ABCM_TB" reader and a SAM card also.

My applet AID is 01 02 03 04 05 06 07 08 09 00 00

I could select my applet on the card.( I sent SELECT APDU command via "DualCard

Ver 2.8"/ pcsc tab) . I now must be receive hello in hex format when I send

8000000000. But i receive 6C0B ! Why did I get this response and

how can I resolve this ? I searched but no solving found.

Ebrahim Ghasemi
  • 5,850
  • 10
  • 52
  • 113
  • 2
    For your information : 1-Use google.com for this kind of problems. 2-use "**I**" instead of "**i**", In English, they use this word in uppercase form always. moreover start sentences with uppercase letters.(I correct them in this question) - And congrats dear bro, you finished the hard steps by now :) good lock – Ebrahim Ghasemi Mar 05 '15 at 11:50

1 Answers1

3

You didn't searched good enough!

If you do a quick look at status words table you will see SW1=6CXX means Wrong Le field; SW2 encodes the exact number of available data bytes

So you must send the below command:

80|00|00|00|0B!

Table of Status Words :

enter image description here

Ebrahim Ghasemi
  • 5,850
  • 10
  • 52
  • 113