Dear all,
Let me explain the situation: we have created an OpenGL application in C++ which visualizes some physical simulations. The basic application is contained within a DLL which is used by a simple GUI. It currently runs on a desktop PC, but we have the idea to turn it into a web service.
Since the simulations require dedicated hardware, the idea is that a user, through his/her browser can interact with our application as a service and this service then renders the result to an image (jpg or anything appropriate) that can then be displayed/updated in the browser.
My question: Having no idea about web development or web services myself I would like your opinion on how to tackle this problem. How can I "easily" turn a c++ application as described into a web-service that runs on some server so that I can approach it over the web? What kind of technologies/APIs should I look at? And are there any real-life examples that tackle a similar problem? I have searched for some answers myself, but the sheer amount of web-technologies is kind of daunting.
Any help or pointers would be appreciated.
Kind regards, Bart.