I have an application written in native C++ which intends intensive computation. In fact I’m interested only in result of computation, i.e. it can be done without GUI or be controlled by some .Net service/application.
Can I run it in Microsoft’s Cloud? How can I do it?
If you mean stuff like P/Invoke, it is definitely possible!
You have to configure your worker role to
enableNativeCodeExecutionthough, but that’s fair, don’t you think? 😉You can read more here.