Firefox 扩展和 COM 组件之间的 IPC

发布于 2024-11-18 12:16:31 字数 189 浏览 3 评论 0原文

我需要在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

还在原地等你 2024-11-25 12:16:31

还可以在您的扩展中包含一个可执行文件并通过 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.

远山浅 2024-11-25 12:16:31

nsIProcess 不支持 IPC。这是一个开发人员尝试开发新界面的项目:

http:// zenit.senecac.on.ca/wiki/index.php/User:Jame​​sboston

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文