vote up 11 vote down star
9

I'm looking for a well-written, flexible library written in C or C++ (I'm writing my apps in C++) that can be used to embed an relatively simple HTTP server into my applications. Ultimately I will use this for application monitoring and control.

There are a number of great client-side libraries (e.g. libwww, neon, curl) but I'm struggling to find a good solution for the server-side. I'm sure other folks have done this before, so I'd love to hear what folks have done and what has worked and what hasn't.

flag

9 Answers

vote up 3 vote down check

How about Shttpd? I did some googling for a web server and came across this one? Has anyone used it before?

link|flag
Looks like this project was renamed "mongoose" and now lives at code.google.com/p/mongoose. I like it for its simplicity and ease of integration (1 C file). – Bklyn Mar 4 at 19:18
vote up 1 vote down

We have used this one for a while. It was OK for small load, for hundred TPS and more had to replace it with Apache module

link|flag
vote up 2 vote down

I'm not aware of any such library, although there does seem to be a need. In lieu of somebody suggesting one, here's an alternate approach that I might recommend:

You might consider using a lightweight httpd daemon such as lighttpd and interfacing it with your app via FastCGI.

FastCGI is a socket mechanism where the web server will feed requests to your app, which can then answer with the content over a simple protocol. There are a number of libraries that implement FastCGI which should make it easy to use in your app.

link|flag
Interesting solution. Playing with FastCGI now. – Bklyn Oct 6 '08 at 21:05
vote up 2 vote down

I've heard about Wt (nothing to do with Qt, I think :) ) but haven't actually used it.

link|flag
vote up 0 vote down

We've been to both extremes on this, and not found much in the middle.

At one end we implemented our own simple server (albeit quite a few years ago now), which I wouldn't recommend.

At the other extreme we've embedded IIS, which isn't exactly light-weight (especially if you're not .net to start with) but provides a tremendous amount of flexibility and actually isn't all that difficult.

link|flag
vote up 0 vote down

You may want to check Baby Web Server

link|flag
I should probably have specified: portable, open-source. That suggestion appears to be neither. – Bklyn Oct 6 '08 at 21:04
vote up 5 vote down

My current favourite is libpion: pion-network-library

which effectively uses the nice boost.asio library for async sockets

link|flag
I'm already using Boost so this seems like the best fit of the lot. Thanks for the pointer. – Bklyn Oct 7 '08 at 13:40
vote up 0 vote down

for future search and reference: http://libwebserver.sourceforge.net/

link|flag
vote up 0 vote down

What about libmicrohttpd?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.