带有服务器套接字的 Firefox 扩展
我需要为 Firefox 编写一个扩展,它接受来自套接字连接的数据,并可以通过同一端口发送回复消息。我想知道是否有人知道我可以查看的任何教程或一些示例代码来完成此任务,因为我找不到很多 Firefox 4 的指南。
I need to write an extension for firefox that accepts data from a socket connection and can send reply messages via the same port. I was wondering if anyone knows of any tutorials or some example code I can look at for accomplishing this as I cannot find very many guides for Firefox 4.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用的是 beta 8+,它可能会因安全问题而被禁用。
请参阅此处
如果您愿意一个退回到 Flash 然后长轮询的套接字库,请查看 Socket.IO
If you are using beta 8+, it may be disabled due to security issues.
See here
If you want a socket library that falls back to Flash and then long polling, check out Socket.IO
为此,您可以在 javascript 中使用 mozilla.org 的 nsIServerSocket 接口来创建套接字连接,并读入和打印到与该连接关联的流中。
To do this you can use the nsIServerSocket interface from mozilla.org in javascript to create a socket connection and read in and print out into streams associated with that connection.