Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

which embedded web server to use for my app GUI [closed]

I'm writing an application in c++ and I was thinking to use an embedded simple web server that will be my gui, so i could set up my application port on localhost.

What such web server would you recommend to use in c++/c?

Thanks

like image 490
user63898 Avatar asked Jul 30 '09 10:07

user63898


1 Answers

If you are using boost then rolling your own in boost:asio is simple.

I assume by embedded you mean a built in webserver not that you are running on some tiny embedded hardware.

If you want something simpler look at mongoose - also see https://stackoverflow.com/questions/738273/open-source-c-c-embedded-web-server

like image 168
Martin Beckett Avatar answered Oct 20 '22 19:10

Martin Beckett