使用 Ruby 创建 COM 服务器?
Windows 上的 Ruby 具有 win32::ole 库,允许 Ruby 充当 COM 客户端,类似于 VBScript 和其他脚本语言(带有 win32 绑定的 Python、Perl 等)。但是,我想知道是否可以使用 Ruby 创建一个可以从其他客户端访问的 COM 服务器。 Python 通过其 win32 包使这成为可能,甚至很简单,但我还没有找到任何使用 Ruby 实现这一点的示例。
Ruby on Windows has the win32::ole library that allows Ruby to act as a COM client, similar to VBScript and other scripting languages (Python, Perl, etc. with win32 bindings). However, I am wondering if it is possible to create a COM server with Ruby that can be accessed from other clients. Python makes this possible, even simple, with its win32 package, but I have not been able to find any examples of this with Ruby.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
编辑:事实证明有一种方法,正如 @Kevin Walzer 在后续评论中指出的那样。见下文。
不。
长的答案是您可以创建一个 C# 包装器,将工作委托给 IronRuby。请参阅此问题:
Can Icompile IronRuby project in VS2010 into DLL/exe file?
此资源也可能有帮助。
https://github.com/rifraf/IronRubyEmbeddedApps
Edit: Turns out that there is a way, as @Kevin Walzer points out in a followup comment. See below.
No.
The long answer is you can create a C# wrapper which delegates the work to IronRuby. See this question:
Can I compile IronRuby project in VS2010 into DLL/exe file?
This resource might help also.
https://github.com/rifraf/IronRubyEmbeddedApps
嗯,Python 总是存在的,它使得创建 COM 服务器变得非常简单。为此我放弃了 Ruby。
Well, there's always Python, which makes creating COM servers trivially easy. I'm giving up on Ruby for this purpose.