Top "Qnetworkaccessmanager" questions

The QNetworkAccessManager class allows the application to send network requests and receive replies.

Qt Scanning Wi-Fi by QNetworkAccessManager

Welcome I have a problem with scanning Wi-Fi to get all available connecting in Wi-Fi. I have writed so far …

c++ qt wifi qnetworkaccessmanager
Qt - How to get responseText with QNetworkAccessmanager

Here is my code: Widget::Widget() { manager = new QNetworkAccessManager(this); connect(manager, SIGNAL(finished(QNetworkReply*)),this, SLOT(replyFinished(QNetworkReply*))); manager-&…

qt qnetworkaccessmanager
How do I save cookies with Qt?

I am trying to save cookies that are produced by my app to disk location such as C:\Users\Username\…

c++ qt cookies qnetworkaccessmanager
Uploading files using Qt QNetworkRequest

I've been having some issues trying to upload files to a server using QNetworkRequest. I've been using this link (http://…

qt file-upload qnetworkaccessmanager
Qt5 posting data to server using QUrl / QNetworkRequest

I have a piece of code that worked in 4.8 but now I need to port it to Qt5 (beta2) This …

qt qnetworkaccessmanager qt5 qurl
Howto implement SFTP with Qt/QNetworkAccessManager (C++)

I'm new to Qt and I would like to implement FTP and SFTP support for my software. As I googled …

c++ qt sftp qnetworkaccessmanager
QT QNetworkAccessManager to download file from ftp server not working

QNetworkAccessManager *nam = new QNetworkAccessManager(); QUrl url2("ftp://127.0.0.1/test.txt/"); url2.setPassword("12345"); url2.setUserName("user"); QNetworkRequest req(url2); QNetworkReply *reply = nam-&…

c++ qt ftp qnetworkaccessmanager qnetworkrequest
Error in inclusion of <QNetworkAccessManager>,<QNetworkReply> in cpp file of a BB10 app development

I am currently working on BB10 app development and trying for some HTTP connection demo app. But in the cpp …

c++ qt blackberry-10 qnetworkaccessmanager
TypeError: native Qt signal is not callable

I'm trying to make a request to a protected webpage, so therefore I'm trying to authenticate with help from QAuthenticator(). …

python authentication pyqt4 basic-authentication qnetworkaccessmanager