Interaction with equipment through a web page

I have a project where I need to access a specialized scanner through a web page (without TWAIN). As far as I know, the only technology that would allow me to access arbitrary client equipment from a web page is ActiveX. Is there any other technology that I am missing?

+4
source share
3 answers

This is possible using the java applet .

0
source

Any server-side application should be able to do this. Write an interface and execute all the commands on the server side, passing any output back to the browser.

0
source

I recently worked with several such systems and wrote everything using FireBreath . To be clear, FireBreath will be an ActiveX control in IE, but it is also an NPAPI plugin that works in other web browsers like Chrome, Firefox, and Safari. FireBreath is also cross-platform, so it can be used to write plugins that will also work on Mac and / or Linux.

You will need to use C ++, but if you want to perform hardware integration, your options are most likely plugins or java; I do not know what limitations you would have with a java applet, but for this, of course, you will need to install Java. FireBreath plugins must also be installed, so this can be a compromise.

0
source

All Articles