views:

21

answers:

1

A few weeks ago, I tried to ask a similar question, but phrased it incorrectly, so I'm trying again. I still don't think what I want is possible, but I'm asking anyhow.

Given a web application running on a "remote" server (i.e. can be anywhere in the world), can that webapp communicate with applets on a Java Card connected to a user's workstation? Or phrased separately, can said remote webapp issue ADPU commands (say, through the middleware installed on the user's workstation).

+1  A: 

You can write a TimedTask (Thread) on the applet to transfer(submit) the data you want from the client machine to the server on a timed basis.

Have a look at the Apache HTTP Client. This will enable you to send requests to your server in the same manner a browser does.

Koekiebox
Unfortunately, I'm trying to interact with applets on the Java card that already exist, so a TimedTask isn't an option.
Jason