
JavacardOS will not accept order any more, please contact our partner Feitian online Store:
https://ftsafe.en.alibaba.com/index.html
https://ftsafe.en.alibaba.com/index.html
Search found 18 matches
- Tue Dec 04, 2018 10:59 pm
- Forum: Questions & Answers
- Topic: fingerprint module demo kit
- Replies: 1
- Views: 7475
Re: fingerprint module demo kit
no, only support win7 win10 operating system. 

- Mon Oct 02, 2017 11:48 am
- Forum: Questions & Answers
- Topic: javax.smartcardio error: Could not obtain response
- Replies: 2
- Views: 10518
Re: javax.smartcardio error: Could not obtain response
So as what has been mentioned above, even for APDU commands that are sent without any data attached. You have to send a dummy data attached to it.
At the applet side, do a setIncomingAndReceive()
first and ignore the retrieved dummy data. then proceed with your response.
At the applet side, do a setIncomingAndReceive()
first and ignore the retrieved dummy data. then proceed with your response.
- Thu Aug 24, 2017 3:16 am
- Forum: Questions & Answers
- Topic: How to catch the reason of error 6F00
- Replies: 7
- Views: 22406
Re: How to catch the reason of error 6F00
mypin.update(buffer, buffer[ISO7816.OFFSET_CDATA], buffer[ISO7816.OFFSET_LC]);
The second parameter of OwnerPIN.update() is the starting offset of your pin in the given array.
In your example command, your are using the content of the APDU buffer at offset 5. This may be the problem.
The second parameter of OwnerPIN.update() is the starting offset of your pin in the given array.
In your example command, your are using the content of the APDU buffer at offset 5. This may be the problem.
- Wed Aug 23, 2017 10:24 pm
- Forum: Questions & Answers
- Topic: How to catch the reason of error 6F00
- Replies: 7
- Views: 22406
Re: How to catch the reason of error 6F00
You may also try to add a try/catch clause to confirm which exception is thrown.
.
.
- Wed Aug 23, 2017 10:22 pm
- Forum: Questions & Answers
- Topic: How to catch the reason of error 6F00
- Replies: 7
- Views: 22406
Re: How to catch the reason of error 6F00
0x6F00 is usually returned by the card when an exception is not caught.
Could you show us your process method ?
Could you show us your process method ?
- Wed Aug 23, 2017 6:24 am
- Forum: Questions & Answers
- Topic: How to catch the reason of error 6F00
- Replies: 7
- Views: 22406
Re: How to catch the reason of error 6F00
Your problem may be caused by this line:
byte byteRead = (byte) apdu.setIncomingAndReceive();
byte byteRead = (byte) apdu.setIncomingAndReceive();
- Fri Apr 14, 2017 6:13 am
- Forum: Questions & Answers
- Topic: SCardTransmit returns "invalid parameters ERROR 80100004"
- Replies: 2
- Views: 9811
Re: SCardTransmit returns "invalid parameters ERROR 80100004"
Another thing is Byte[] vectorSend command maybe wrong. It seems that LC is wrong.
You can try to send
>> 0x00, 0xa4, 0x04, 0x00, 0x02, 0x6f, 0x65, 0x00
You can try to send
>> 0x00, 0xa4, 0x04, 0x00, 0x02, 0x6f, 0x65, 0x00
- Fri Apr 14, 2017 5:46 am
- Forum: Questions & Answers
- Topic: SCardTransmit returns "invalid parameters ERROR 80100004"
- Replies: 2
- Views: 9811
Re: SCardTransmit returns "invalid parameters ERROR 80100004"
Do you have SCARD_PROTOCOL_T1 in your SCardConnect call?
- Mon Jan 09, 2017 5:28 am
- Forum: Questions & Answers
- Topic: Get 6F00 when sending INS_START command
- Replies: 2
- Views: 10792
Re: Get 6F00 when sending INS_START command
Note that there is break; operators in a switch-case statement. switch(apdu_buffer[ISO7816.OFFSET_INS]) { case INS_START: // When start command is received do: // Create challenge and write it into apdu buffer and challenge_card_stored array as reference challenge_card_sent.generateData(apdu_buffer,...
- Mon Jan 09, 2017 5:25 am
- Forum: Questions & Answers
- Topic: Exception 0x8010002F, why?
- Replies: 1
- Views: 8478
Re: Exception 0x8010002F, why?
0x60 can not be used as SW1 status word, which results in the communication error. It will not request any action on data transfer.