AnilR
AnilR

Reputation: 99

Which HTML 5 Standard supports reading data from USB connected device currently we are managing with ActiveX and Java Applet

We have healthcare device data reading functionality implemented in Browser application for specific client need - ActiveX for IE and Java Applet for other two major browsers Chrome and Firefox

  1. ActiveX - Microsoft already announced ending support to their own creation with Edge , their new browser

  2. Java Applet - most of the Browser vendors announced their support to NPAPI. Chrome already ended support on SEP 2015 and Firefox ending support by end of 2016

In view of no support for both the technologies, we are left with no other option but to explore / look for if HTML 5 Standard can support this need.

If anyone can provide more information on HTML 5 standard would be of great help.

Note:- at least for now Desktop option is rules out by clients , so any HTML 5 is the only alternative for us.

Upvotes: 0

Views: 75

Answers (1)

taxilian
taxilian

Reputation: 14324

I don't believe it's released yet, but WebUSB is probably what you're looking for.

In the mean time you can use Native Messaging to provide that support on most browsers which don't support NPAPI/ActiveX (and FireFox plans to add support for Native Messaging). I don't know of a solution for MS Edge and similar.

Upvotes: 1

Related Questions