javascript cannot check for a file, you have two options imho:

write an applet that interfaces with the client app - maybe the applet
starts to listen on localhost:10000 and the java client app connects
to that port and sends the image over the tcp connection, or do the
file thing you are talking about. the applet can then put the image
data into a hidden form field.

the other option is to make the authentication process be done
completely in the java app which then opens the browser to a url and
passes in everything as a post or a get request.

-igor

On Wed, Feb 11, 2009 at 3:04 PM, jsinger66 <[email protected]> wrote:
>
> Hi
>
> I am developing a Wicket application that needs to interface with a client
> side java application. The client app is a biometric application that
> captures fingerprint images. It is non-graphical.
>
> What I need to do now, is show this fingerprint image within a wicket form
> and capture other user information.  The wicket app needs to 'monitor' the
> java app to see when the fingerprint changes..
>
> I have thought of writing the image to a file, and using an timer within
> wicket to keep checking the file.
> Or maybe JMX.
>
> Any help would be great....
>
> Thanks in advance
> Jeff
> --
> View this message in context: 
> http://www.nabble.com/Interacting-with-Client-Side-java-application-tp21966411p21966411.html
> Sent from the Wicket - User mailing list archive at Nabble.com.
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [email protected]
> For additional commands, e-mail: [email protected]
>
>

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to