PDA

View Full Version : QNetworkAccessManager vs QHttp



jiveaxe
17th February 2009, 11:22
Hi,
I discovered this new, for me, class QNetworkAccessManager; reading the doc was not clear the difference of it with QHttp; can anybody explain me the meaning of this two classes and when should be used one rather than the other?

Thanks

jpn
17th February 2009, 11:50
QNetworkAccessManager is a more flexible replacement of QHttp. As far as I understood, Trolls introduced QNAM because of the limitations of QHttp were reached while implementing webkit support.

wysota
17th February 2009, 12:31
Unfortunately it doesn't handle FTP protocol well. Only put and get are supported. It's a good step forward but the scheme should still be improved.

jiveaxe
17th February 2009, 14:07
Thank you both.