Need to create an http server using Qt 4.7 in C ++

I need to create an http web server that responds to http clients using Qt 4.7
I went through the API and found several servers, but how to create an http server using the API
Any hints and recommendations for this request .... I'm completely new in that

also what is .pro in Qt 4.7 and it is the same as in Visual Studio

+5
source share
2 answers

You must use QTcpServer, check example.

+6
source

QtWebApp is an HTTP 1.1 server based on QTcpServer. It supports GET and POST methods, file downloads, cookies and sessions.

+3

All Articles