I have a COM library provided by a vendor as an API. I want to call this from JavaScript to interface with their product. How can I call this from JavaScript? (please provide examples or links to pages that have examples).
How to access COM library from JavaScript?
Collapse
X
-
-
Is this on the server or the client?
If it's the server, you could use a server-side language for the interaction with the COM library and JavaScript to access this script (Ajax).
If it's on the client, you will need a browser-specific solution which obviously depends on which browser you or your users are using.
Comment