I have a classic ASP web application and want to host it in the Azure Cloud (our own companies private Azure Pack).
This app uses COM+ objects for things like data access to databases and some other small utilities.
It is pretty easy to host ASP pages on Azure (it just needs an IIS container) but it seems COM+ objects are not supported.
This is all a stop-gap until this application get's retired, but moving to Azure would be beneficial as we are moving everything to Azure.
How can I continue to support the data access components and other COM+ utilities called by the app?
I am open minded to:
- Decompile them, figure out what they do, and rebuild them in .NET
- Host them in some kind of container assembly (like Interop of some kind)
- Put them in a 'bin' folder and call them from there (told this prob won't work)