Reputation: 3304
I have a digialPersona fingerprint reader and I'm working on a web application which is to have fingerprint enrollment and verification functionalities.
Is it possible to do this via the browser? Is yes, how?
If no, what are the best practices?
Upvotes: 0
Views: 2001
Reputation: 4856
-The print reader (Hardware) will have some api reference library for interfacing. You may write Custom ActiveX control
in Winforms / C# or C++ (depending the SDK library ref) & load it via Javascript
.
-One more option is to use Full trust WPF browser application (XBAP)
NB: Beware of client side privileges settings in these scenarios
Upvotes: 2