Click here to Skip to main content
16,021,172 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi All,

I have develop one web application with c# coding. But i want to integrate finger print scanner device ("Digital Persona U are U 4500") to my web application! How to integrate that? Please guide me to solve this issue. I know the windows application, but i don't know how to integrate to my web application. Can any one please guide me!


Thanks in Advance!
Murali.
Posted
Updated 19-Mar-16 19:34pm

I know the windows application, but i don't know how to integrate to my web application
There is no direct way to integrate a hardware device to a web application. Having a device integrated works good and with ease with a Winforms or WPF desktop application. Integrating with an ASP.NET application would be difficult.

You need a SDK for it, either a 3rd party or write your own!
Have a look at this: Free cource code Fingerprint comparison[^]

Look at this article: Fingerprint Reader Integration using the M2SYS SDK[^]

You can explore the following class: MSDN: Biometrics Class[^]

Also look at this: C# wrapped Biometric API[^]


UPDATE: Just a second thought, using Silverlight (if possible option) might help.
 
Share this answer
 
v2
Comments
Manas Bhardwaj 15-Jun-12 17:09pm    
correct +5
I solved this problem, initially, creating a desktop app (winform) and deploying it using clickonce.

This way you have a desktop app, but easy to call and deploy from a URL.

Also you can pass arguments to the application using querystring parameters, so when the app launch, it can retrieve some user id and call some web service to retrieve user details and then update it iback to the database.

Something like http://www.yourdomain.com/downloads/MyDesltopApp.application?userID=999

The above URL is an example of a clickonce desktop app, published and accepting parameters.

this way, you could easily integrate your web application simply creating dynamically a link similar to my example.

When the user clicks on that link or button or whatever, the app launch downloading, installing and running and reading your parameter.

Hope this helps.
nycklander
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900