web services - How to expose a native dll on EC2 or Azure? -
i have native c++ dll doing advanced calculations should kept secret. dll has interface, let's say:
int calculate(int* params, int params_length);
i want expose dll web applications. far found common solution build web service around dll (soap or rest).
what best way of solving kind of problem, platform use (ec2 or azure) ? prefer not use .net solution.
having service around best solution. rest service if preferable performs better , don't need build soap wrapper anymore.
also, if web applications written in .net can directly use c++ dll, explained here, http://blogs.msdn.com/b/jonathanswift/archive/2006/10/02/780637.aspx
regarding platform, there no best platform such , can use of two. however, if building solutions in .net , using visual studio azure preferred there built-in tooling in visual studio azure.
Comments
Post a Comment