问题描述
我有很多32位C ++代码,我想在Windows Azure Compute Service中运行。代码已经打包到COM服务器中,所以我想从托管代码中使用该服务器来处理外部请求。我google了,但找不到关于如何在Windows Azure下部署COM服务器的任何细节。我怎么做?有没有指南?有什么限制?
我认为您可以将COM对象部署为二进制文件,然后使用启动脚本注册它们 - 练习2 :使用启动任务注册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?
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"
这篇关于如何在Windows Azure中安装和使用COM对象?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!