I want to open a serial port cash drawer connected to the client pc. I will have a record button on an asp page and when I click on it the drawer will open

link|improve this question
feedback

1 Answer

You'll need some way to communicate with the serial port. Web browsers typically cannot do this, so you probably want to call a program on the system.

One way to do this would be with Java Server Pages - you can call a Java application using JNI to communicate with the serial port. Look online for serial communication libraries using your favorite language.

link|improve this answer
Shame there's no "ser:" URI scheme. :-) – T.E.D. Jun 15 '09 at 17:52
I'm sure you could make one: msdn.microsoft.com/en-us/library/aa767914(VS.85).aspx – David Brown Feb 26 '10 at 5:16
feedback

Your Answer

 
or
required, but never shown