Qt HTTP Server?

qt, qt4, web-services

Solution

I found this https://github.com/vinipsmaker/tufao , Its a late answer .. not sure if it helps.

Problem

I'd like to write a small HTTP server application that receives HTTP GET requests, processes them and sends out a reply. Because of the history of the application I'd favor using Qt for this, but all I can find is the other (more common) direction: Send a request to a server and receive a reply using QNetworkAccessManager. What I need is something like a socket that, when a request comes in, produces an object where I can pick url etc. of this request, so I can send out an appropriate reply. Am I just blind or is nothing like this in the Qt framework? If so, can you recommend alternatives?

Original source

Related problems