Questions tagged [qthttp]

A possible misspelling of the QHttp class, in the QT framework, that provides an implementation of the HTTP protocol.

A possible misspelling of the QHttp class, in the QT framework, that provides an implementation of the HTTP protocol.

http://qt-project.org/doc/qt-4.8/qhttp.html#details

5 questions
4
votes
1 answer

Resuming a Failed HTTP Download With Qt & QNetworkRequest

I'm trying add auto-update capabilities to an application I'm developing. I've based this functionality off the Qt HTTP Example (and by based I mean I copied this example exactly and then went from there). It's downloading a ZIP file and then…
Klazen108
  • 690
  • 4
  • 19
4
votes
2 answers

How do I make a network request in Qt binding to a specific interface/IP?

So as of Qt 5, QHttp is deprecated and we're all supposed to use QNetworkAccessManager now. Fine. But how do I make a request (HTTP or otherwise) from my multihomed machine without feeling like I'm playing roulette? If there is no way, then what is…
njahnke
  • 1,369
  • 2
  • 10
  • 33
2
votes
2 answers

Substitute for QHttp in Qt 5.2

I wathed a video on youtube about QtNetwork. My Qt version is 5.2. Qt cannot find the QHttp header. I searched my Mac for QHttp and got nothing. What is the substitute for QHttp in Qt 5.2? Thank you!
user3394949
  • 71
  • 1
  • 3
1
vote
2 answers

RSS feed reader. QT. Troubles

I was reading this tutorial: http://www.tuxradar.com/content/code-project-create-qt-rss-reader and tried to create RSS feed reader in QT Creator. As this article was wrote a years ago, I met a problems (see on img. or visit…
Pavlo Zvarych
  • 615
  • 2
  • 9
  • 13
-1
votes
2 answers

QT HTTP GET , What's wrong?

This is the code : QEventLoop eventLoop; QNetworkAccessManager mgr(); QObject::connect(mgr, SIGNAL(finished(QNetworkReply*)), &eventLoop, SLOT(quit())); QUrl url(site); QNetworkRequest req(url); QNetworkReply *reply =…