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

I'm doing a time and attendance project using a biometric reader(finger print) in asp.net with c#. If i want my softwate to communicate with the reader , i use the following code ,

bIsConnected = CtrlBioComm.Connect_Net("192.168.1.12", 4370);


where 192.168.1.12 is the ip of the reader.
But now i want to communicate with the remote reader. I have a static Ip.. Is it possible?.. Someone told me i have to use web service to achieve this.. Can anyone pls guide me..
Posted

1 solution

if you can access (ping) the device from your computer directly, your application can also access the same directly, web service is not required (will not work instead, WS works to call WebMethods not device driver functions).

probably you have to write some code to connect to internet (like proxy settings), rest is the same.
 
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