Skip to Main Content

Java Card

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

send APDU form an applet to another applet

843851Aug 9 2010 — edited Aug 12 2010
Hi,

I try to send an APDU from an applet to another applet. Both runs on the same Java Card.

With a jar-file on Eclipse:
I select the cardreader,
terminal = (CardTerminal) terminalList.get(1);
establish a connection with the card,
Card card = terminal.connect("T=1");
channel = card.getBasicChannel();
and send the CommandAPDU
ResponseAPDU r = channel.transmit(new CommandAPDU(data));
Has so. an idea how to realize with an applet?
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Sep 9 2010
Added on Aug 9 2010
5 comments
211 views