I'm trying to setup a POS screen in a web-based accounting system wherein staff can read either a standard magnetic strip credit card or one with an EMV chip. From what I've seen, none of the card readers capable of reading chip have keyboard emulation. So the issue is being able to read the card data and enter it into fields on a web browser form that is already open to the user.
I'm planning to focus on a particular USB reader that has C# .NET and Java SDKs available (also C++, but I am not practiced in developing in that language), but if I have to look elsewhere, I have to look elsewhere. So, utilizing either of those platforms, is there a way to read the data through a .NET or Java device listener and then be able to focus on a field or fields in an already open browser window to enter card data?
Or, is there anything available in a specific browser I can work with and force users into using that browser? I thought about possibly working with ActiveX, but I am under the impression that it is being phased out. What I have found so far doesn't help me with writing to an already open browser window, just with opening a new browser window altogether. Also, based on the nature of the accounting system, I am unable to implement any kind of ASP.NET or Java web app to handle operating the card reader. It only allows JavaScript customization, which I am pretty is unable to access output from a USB device connected to a PC.