Firefox 扩展和 COM 组件之间的 IPC
我需要在 JavaScript XPCOM 组件 和 COM 组件(本机 WIN32 进程)之间进行同步调用。
我知道,选项是:
1)打开套接字并使用TCP/IP
2)有一个NPAPI插件,并在扩展XUL中加载该插件
3)使用Ctypes
还有其他更好的方法来实现这个吗?
I need to make a synchronous call between a JavaScript XPCOM component and a COM component (native WIN32 process).
I know, options are:
1) Open up sockets and use TCP/IP
2) Have an NPAPI plugin, and load the plugin in the extensions XUL
3) Use Ctypes
Is there any other better way to implement this ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
还可以在您的扩展中包含一个可执行文件并通过 nsIProcess 调用它 - 但这只是单向通信。不确定它是否“更好”,取决于您的 ctypes 问题是什么。
There is also the possibility to have an executable in your extension and call it via
nsIProcess
- but that's one-way communication only. Not sure whether it is "better", depends on what your problem with ctypes is.nsIProcess 不支持 IPC。这是一个开发人员尝试开发新界面的项目:
http:// zenit.senecac.on.ca/wiki/index.php/User:Jamesboston
nsIProcess does not support IPC. Here is a project in which developers try to develop new interface:
http://zenit.senecac.on.ca/wiki/index.php/User:Jamesboston