Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is the best way to develop a C++ web application? [closed]

Tags:

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?

like image 208
user32262 Avatar asked Jun 24 '09 04:06

user32262


People also ask

Can C be used for Web development?

C is general-purpose and one of the oldest yet commonly used languages in web development. It is the basis of other programming languages, such as C++ and JavaScript.


1 Answers

Take a look at Wt.

Wt (pronounced 'witty') is a C++ library and application server for developing and deploying web applications. It is not a 'framework', which enforces a way of programming, but a library.

The API is widget-centric, and inspired by existing C++ Graphical User Interface (GUI) APIs. To the developer, it offers complete abstraction of any web-specific implementation details, including event handling and graphics support.

It's not free for commercial use though.

like image 67
the_drow Avatar answered Jan 18 '23 01:01

the_drow