lliz146sm / readnfccc

Automatically exported from code.google.com/p/readnfccc
0 stars 0 forks source link

No cardholder nor expiration date #9

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Using my visa premier, I can successfully retrieve my history, but I can't 
retrieve cardholder or expiration date. 

After doing some debug, I found that the code {0x00,(byte) 0xB2,0x01,0x0C,0x00} 
isn't responding with the good content (response is only two bytes)

I changed this line by {0x00,(byte) 0xB2,0x02,0x0C,0x00} (found in another 
code) and I have now a longer response (57 bytes) which contains the two 5F & 
20 bytes that we are looking for, but the remaining bytes are not relevant (no 
cardholder nor expiration date)

Is there something I missed ? 

Moreover, I had to replace all tv1.setText(foo) by tv1.setText(tv1.getText() + 
"\n" + foo) otherwise only the last processed value was displayed

Any help is welcome !!

Thanks.

Original issue reported on code.google.com by cho7k...@gmail.com on 19 Nov 2012 at 4:18