Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are ActiveX applets dead?

Are ActiveX applets as a technology supported by Microsoft dead?

What are the alternatives to ActiveX to create extremely rich internet applications using Microsoft Technologies? (Silverlight does not cut it for me, as it doesnt give me access to serial ports - or does it?)

like image 803
Raj Rao Avatar asked May 01 '09 15:05

Raj Rao


Video Answer


2 Answers

You can of course still make ActiveX applications, but know that they will only work with Internet Explorer, unless users of other browsers install hosting plugins, that aren't all that good anyway.

In either case, a web application that requires access to a serial port? Are you sure you're not better off with a desktop application instead? A simple refresh and you've cut off that serial port.

Not all applications belong in the browser.

like image 166
Lasse V. Karlsen Avatar answered Sep 20 '22 17:09

Lasse V. Karlsen


If you want to launch an application via a web browser that can access the serial ports, one option would be to use Java Web Start with JavaFX as the rich interface API, and Java Communications for the serial port access. You could end up with a cross-platform application at the end as well.

Or just write a native application using your favoured Windows toolkit if you absolutely are restricted to using Microsoft tools.

like image 30
JeeBee Avatar answered Sep 22 '22 17:09

JeeBee