如何在 Windows Azure 中安装和使用 COM 对象?
我有很多 32 位 C++ 代码想要在 Windows Azure 计算服务中运行。该代码已打包到 COM 服务器中,因此我想从为外部请求提供服务的托管代码中使用该服务器。
我用 google 搜索但找不到有关如何在 Windows Azure 下部署 COM 服务器的任何详细信息。我该怎么做?有指导吗?有什么限制?
I have a lot of 32-bit C++ code that I want to run in Windows Azure Compute Service. The code is already packaged into a COM server and so I'd like to consume that server from managed code that will service external requests.
I googled but can't find any details on how to deploy a COM server under Windows Azure. How do I do that? Is there a guide? What limitations are there?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您可以将 COM 对象部署为二进制文件,然后使用启动脚本注册它们 - 请参阅 http:// /msdn.microsoft.com/en-us/gg433178 - “练习 2:使用启动任务注册 COM 组件”
I think you could deploy the COM objects as binaries and then register them using a startup script - see http://msdn.microsoft.com/en-us/gg433178 - "Exercise 2: Using Start-Up Tasks to Register a COM Component"