从 activeX 控件内部使用 Windows 命名管道 - 可能吗?
我开始设计一个从 Internet Explorer 中的 Windows Media Player ActiveX 控件内部运行的 DMO。
是否有任何原因导致在 DMO 内部使用 Windows 命名管道不起作用?
用户权限/特权/内核模式的东西?
谢谢 :) 罗伊
I am starting to design a DMO to run from inside a windows media player activeX control in Internet Explorer.
is there any reason why using windows named pipes from inside the DMO wouldn't work?
user permissions/privilages/ kernel mode stuff?
Thanks :)
Roey
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我没有尝试过,但我想不出它不起作用的任何具体原因。但是,请记住,从 Vista 开始,Internet Explorer 作为低完整性级别进程运行,因此您连接到的任何管道都需要相应地设置其访问控制。
I have not tried it but I can't think of any particular reason it could not work. However, keep in mind that starting with Vista Internet Explorer runs as a low integrity level processes so any pipe you connect to will need to have it's access control set accordingly.
我已经通过 FireBreath 插件(IE 上的 activex 控件,其他上的 npapi)完成了此操作,您需要记住的唯一一件事是 IE 中的 activex 控件通常在低完整性模式下运行,因此您需要确保设置管道上的 ACL 掩码正确。只要配置正确,它就可以正常工作。
I have done this from a FireBreath plugin (activex control on IE, npapi on others) and the only thing you need to keep in mind is that activex controls in IE are often running in low integrity mode, so you need to make sure you set the ACL mask on the pipe correctly. As long as you have it configured correctly, it works fine.