Reputation: 166
i had developed an activex control to communicate web browser with the local machine . it is working fine for me with Internet Explorer . how can i communicate my activex in firefox and chrome.
will you please anyone say me how to develop plugins to communicate with .net ActiveX control
Upvotes: 0
Views: 4096
Reputation: 14324
Build your plugin in FireBreath instead of in ActiveX; FireBreath plugins build as both activex controls and npapi plugins and work on all browsers.
Upvotes: 0
Reputation: 1857
ActiveX will work only in IE
All other browsers use different plugins API (NPAPI)
So you have to implement separate plugin for this browsers
Upvotes: 1