views:

37

answers:

1

I'm writing a large system in C++ and want to include an embedded webserver for management and reporting. Can anyone make some recommendations?

TIA

A: 

Take a look at Mongoose. It is free, open-source, cross-platform embedded web server written in C. We are using this in a number of projects and are very happy.

Vlad Lazarenko
Thanks. We use boost asio so I'm actually just going with the example httpd in there.
shaz