vote up 1 vote down star
1

I have a C++ app and looking for a library that would make it a HTTP Server that's able to serve static files as well as perform very simple tasks. The only constraint is that it must be Cross-platform.

What are my options.

Clarify: I need a web interface for my application. This application is a background program that does other tasks. I want to provide a way so you can access http://localhost:9999/performtask or http://localhost:9999/viewstatus

clarification2: something like this http://www.gnu.org/software/libmicrohttpd/

flag

74% accept rate
Your question really isn't clear. do you have some functionality that you want to serve via the web? – Uri May 17 at 0:26

5 Answers

vote up 3 vote down check

See this question. I ended up choosing Mongoose.

link|flag
Exactly what I need (points++ for Mongoose doing threading) Thanks! – The Unknown May 17 at 2:50
vote up 0 vote down

You mention a library, do you mean something in process or out of process? You could try apache webserver.

Apache Webserver

link|flag
In process, not depend on anything outside. – The Unknown May 17 at 0:34
vote up 0 vote down

Java would be a better choice for a cross-platform solution plus it has good web services apis. Take a look at Netbeans it is a good way to get started.

link|flag
This would be a good route to take, except the application is already written, it has to be C or C++ – The Unknown May 17 at 0:51
vote up 0 vote down

Qt framework have buildin webkit. have a lookinto that.

link|flag
vote up 0 vote down

I am partial to the poco library as a starting point.

link|flag

Your Answer

Get an OpenID
or

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