Encapsulate ActiveX For JavaScript
Solution 1:
No, there isn't. To create a COM object (which is what ActiveXObject
did), you'd need to use a browser with native support for ActiveX (old IE) or a browser you could use and/or write an old-style (NPAPI) "plugin" on.
All major browsers have discontinued or are actively (no pun) discontinuing support for the NPAPI plugin mechanism because of the security issues around it.
For instance, I think the SilverLight plugin might have been able to create COM objects, but as it's implemented as an NPAPI plugin, it is rapidly disappearing (and was EOL'd by Microsoft in 2012; they support SilverLight 5 through 2021, but that doesn't help you).
There is no replacement technology that can create COM objects from JavaScript code running in a web page in a standard browser at this time.
Solution 2:
I have a COM object that I call from a regular webpage using Javascript. I also do calls directly into a Domino database (the database used by IBM Notes).
What you could do is to write all your functionality on the server, then call the functions from the browser using Javascript. Simply build a wrapper around the functionality you want to expose to your web application. You can then perform Ajax calls to the server to do things or retrieve data.
You can find more info in the following two presentations:
http://blog.texasswede.com/mwlug-2015/
http://blog.texasswede.com/my-connect-2016-presentation-demo-database/
Post a Comment for "Encapsulate ActiveX For JavaScript"