Link to home
Start Free TrialLog in
Avatar of MatijaT
MatijaT

asked on

.NET POS device communication

Hi all. I will need some help.
Im starting with programming some .NET application and in one part of it I need to connect with POS device (http://www.hypercom.com/products/T2100.asp ).
The Physical interface to the terminal will be implemented by a direct RS-232 connection (COM port).
What is the best solution for that kind of connection? POS for. NET,  SerialPort class or something else? I don't have any Service Object or OPOS driver  from manufacturer.
I have to send/receive some data from this device.
Message block format :
-      STX       Message (256 maximum)       ETX       LRC
Data transmission to and from the terminal is Asynchronous at up 9600 BPS, with 7 data bits, even parity and 1 stop bits (7E1). 7 bit ACSII characters are supported with significant bit transmitted first; parity is most significant bit.
The LRC is generated by Exclusive-OR'ing all data bytes following the STX, up to and including the ETX.
LRC  The LRC byte follows the ETX and must have the same parity as the rest of the message.

Could you please write some example of sending / receiving message to that device (.NET, C#, VB.NET)

Thanks
ASKER CERTIFIED SOLUTION
Avatar of Fernando Soto
Fernando Soto
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial