Click here to Skip to main content
15,908,112 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
I have a fingerprint attendance machine (smartcontrol) connected to the network and I need to pull the data file from it.
I managed to establish connection by knowing the open port, it has pop3 port and smtp port and other ports.
I need to know what is the command needed for pulling the data file (txt) from it and I don't know how to get it sdk.

This my code:
C#
IPAddress add = IPAddress.Parse("192.168.1.194");
            IPEndPoint endpnt = new IPEndPoint(add, 25);  //995-25(smtp)-110(pop3)-119-143-456-563-587-993-995
            Socket skt = new Socket(AddressFamily.InterNetwork, SocketType.Stream, ProtocolType.Tcp);
            skt.Connect(endpnt);
            MessageBox.Show(skt.Connected.ToString());
Posted
Updated 7-Nov-10 21:45pm
v3
Comments
Dalek Dave 8-Nov-10 3:45am    
Edited for Grammar and REadability.

1 solution

Are You Looking for this..,

skt.BeginSend(


Go through the below link

http://msdn.microsoft.com/en-us/library/system.net.sockets.socket.beginsend%28VS.71%29.aspx[^]
 
Share this answer
 
Comments
als med 8-Nov-10 3:26am    
first thanks for reply , but i need to get the data file from the machine and don't know what i send to the machine to get the file data which?
Member 8203391 13-Sep-12 11:21am    
Hello, als med is there a method to contact you?, i am in the same situasion as you, i am orking with tcp/ip fingerprints but i could not made it work with my app (Windows Forms)
Rajesh Anuhya 16-Sep-12 1:36am    
what help you required?.
--RA
Member 8203391 16-Sep-12 1:45am    
I need to know how als med did to contact the network fingerprint reader, if he has a routine or something that can be helpful
Onick Ahmed 26-Feb-17 9:50am    
Hello Member 8203391, did you find any way to solve this?. what device were you using? I am having problem with my device. the sdk i got from the manufacturer company isn't working. Can you suggest me anything helpful?

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