What could be the best way of developing a C++ web application? The web app would be run on Apache HTTP server. How can you overcome challenges like sessions, persistence, context switching, multithreading etc with C++? How could one utilize C++ in best possible way to make it work like Servlets?
|
3
|
|||||||||||
|
|
|
The answer is what you'd expect it to be: pick libraries that handle issues when possible (multithreading) and implement libraries where necessary (generating a session key and storing it somewhere like a database). |
||
|
|
|
|
You can use Qt framework, Boost & Poco libraries to do web development in C++. Qt & Poco have DB support for various RDBMS. You may look into Axis C++ if you need to develop web services in C++. ClearSilver has C library to handle CGI and you can use C++ on top of it. Plenty of choices for you! |
||||||||||
|
|
|
Take a look at Wt.
It's not free for commercial use though. |
||
|
|
|
|
Use C++ web framework like CppCMS if you like web-like development, it is oriented for high performance and works with . It provides:
You may give a try to Wt but it is much more like writing GUI using browser rather then traditional web development tool. |
|||
|
|
|
|
I'm saying this as a C++ developer... I would probably consider using Java instead. Since Java is much more commonly used for this, you'll find way more existing libraries to leverage. If you ever want to hire more people, you'll have an easier time finding web-app Java developers than web-app C++ developers. If you insist using C++, check out: |
||
|
|
