How to install and use a COM object in Windows Azure?

I have a lot of 32-bit C ++ code that I want to run on the Windows Azure Compute Service. The code is already packaged into a COM server, so I would like to use this server from managed code that will serve external requests.

I googled but cannot find any details on how to deploy a COM server under Windows Azure. How should I do it? Is there any manual? What are the limitations?

+3
source share
1 answer

I think you could deploy the COM objects as binary files and then register them using a script run - see http://msdn.microsoft.com/en-us/gg433178 - "Exercise 2: Using launch tasks to register the COM component "

+7
source

All Articles