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

learn more… | top users | synonyms

1
vote
1answer
20 views

Qt signal slot connection - QNetworkAccessManager

Im new in Qt and im trying to understand the following signal-slot connection: m_networkManager = new QNetworkAccessManager(this); QNetworkReply *reply = m_networkManager->get(request); ...
0
votes
1answer
23 views

Qt: QNetworkAccessManager dont send request

I used QNetworkAccessManager to handle send a http request: void f() { QNetworkRequest request( QUrl( address ) ); QNetworkAccessManager mng; mng.get(request); ...
0
votes
1answer
78 views

C++ Qt get HTTP headers from QNetworkRequest

I am developing a Qt C++ application. I need to download some files (which can be large) and show downloading progress to user. To perform this task, I use this code: QNetworkAccessManager* ...
1
vote
0answers
61 views

QUrl: Protocol “sftp” is unknown

I am trying to LIST my sftp server, but I’ve got a problem when sending my request: if I print my QNetworkReply::errorString(), this is what I get: Protocol “sftp” is unknown This is what my QUrl ...
0
votes
0answers
55 views

How to forge request using createRequest by subclassing QNetworkAccessManager?

I would like to download the dynamic generated image from a website. The website is has javascript code and click button to turn to previous image and next image. I inspected the http request and ...
0
votes
1answer
38 views

On MacOSX, QNetworkAccessManager gets into an infinite loop when invalid auth credentials specified

In my cross-platform app, I use QNetworkAccessManager to send HTTP requests to my HTTP service that requires authentication. I recently upgraded to QT5, and to my complete surprise on MacOSX my app ...
1
vote
0answers
18 views

why qtnetworkaccessmanager don't go to authenticationRequired

I am creating an application that is mentioned to connect to an instance of on owncloud server but i can't find why it doesn't connect to the server .Instead of that the reply i get to the login ...
0
votes
0answers
45 views

How to use QNetworkAccesManager?

Is there any tutorials or example for how to use QNetworkAccessManager with QAuthenticator and QNetworkRequest? My application contains a step where the user fill in his login and password and connect ...
0
votes
1answer
29 views

Re-ordering the connection queue of Qobject

I have a customized QNetworkAccessManager and a QWebPage class, now I want to read the reply data of each request retrieved by the QWebPage. Now I connected the finished() signal, but since QWebPage ...
0
votes
0answers
57 views

Qt, how to keep QNetworkReply.replyFinished in order?

I have a question when I am writing Qt network code. I use QNetworkAccessManager to get a a serial of web pages, such as: www.google.com/1.php www.google.com/2.php www.google.com/3.php ... and the ...
0
votes
0answers
40 views

QNetworkConfigurationManager not raising signals on Ethernet (OSX)

According to the docs QNetworkConfigurationManager has 5 signals that describe the events on the interfaces configurations. In OSX Lion 10.8.2 QNetworkConfigurationManager works correctly when the ...
5
votes
4answers
374 views

QNetworkAccessManager: post http multipart from serial QIODevice

I'm trying to use QNetworkAccessManager to upload http multiparts to a dedicated server. The multipart consists of a JSON part describing the data being uploaded. The data is read from a serial ...
0
votes
0answers
184 views

Qt Download File - QNetworkAccessManager, not getting data

I'm trying to have my application download a file from a URL, typically an EXE or a Jar, not that this should change much though. I have this all running in a thread, but I don't think that will make ...
2
votes
1answer
125 views

Alternative for QNetworkAccessManager

I am drawing map in BB10. The map is divided into tiles. At start user gives a longitude, latitude and zoom level and the map is shown at that co-ordinate. I get a single tile by doing a http request ...
0
votes
1answer
150 views

QNetworkReply and 301 redirect

I have a webviewer and only want it to only be able to access our webapps, to achieve this I have placed a php header which I look for in my Qt App. This works fine but with one exception and that's ...
1
vote
0answers
83 views

Proper way to handle multiple QNetworkRequests

im grabbing url's from a list and then sending each to a QNetworkRequest and recieving the HTML back to process. I however have thousands of requests to process. So my application kept hanging until i ...
0
votes
1answer
106 views

Pyside qwebview custom protocol

I'd like to support custom protocol inside my pyside app but without success. So far I tried: class MainWindow(QWebView): def __init__(self, parent=None): oldManager = ...
0
votes
1answer
98 views

How to stop QNetworkAccessManager from getting a reply C++

Hi I have a QNetworkAccessManager which I use to send request to get image data from server. This call is asynchronous. I do multiple calls with it. Each call is done by opening a new instance of ...
0
votes
1answer
69 views

how to include QtNetwork while cross compiling vlc for windows

I am modifying vlc source code and have added a few UI screens. I needed to use QtNetwork package where as by default vlc only has QtCore and QtGui packages. While compiling for Linux i modified the ...
0
votes
1answer
258 views

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\AppData\Local\MyCompany\MyApp. I have implemented a webview and have pretty much finished coding my ...
0
votes
2answers
192 views

Qt QNetworkAccessManager or other method get html status code without getting page contenet?

i need to get web sites html status codes today i just do simple get request to the domain , and then i get the status code as part of the response , but also the site index.html content . ...
0
votes
1answer
233 views

QNetworkAccessManager sends GET two times

I've got some class to interfere with HTTP-server. Here is meaningfull code parts: const QString someClass::BASEURL = QString("http://127.0.0.1:8000/?"); someClass::someClass(): manager(new ...
1
vote
1answer
118 views

Problems with file download

I have this QT script using webkit. I can download files no problem but I can't get the progress bar moving in the file dialog. I think the network reply has already been sent before I call the ...
2
votes
2answers
885 views

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 is what should happen: I want to post some data to a webserver the url should look like this ...
3
votes
1answer
236 views

Why do I not get response data when uploading an image?

I am writing an image upload widget that sends the data to a PHP script and gets the new uploaded filename as http response from the PHP script. @jdi, that was one problem now i get "? as the ...
0
votes
2answers
118 views

Qtimer fires before QNetworkAccessManager finished

Im making a connection every X sec. but in case net bandwidth is overloaded timer fires before QNetworkAccessManager sends finished signal and app crashes. MainWindow::construct: pTimer = new ...
3
votes
1answer
281 views

QNetworkAccessManager threads never finish

I know that in version 4.8 each http request gets its own thread to run. I'm doing a links checker app that does a lot of http requests in a while loop and I notice in the windows task manager that my ...
0
votes
1answer
394 views

QNetworkReply and QNetworkAccessManager timeout in http request

How do I setup a timeout when I do an http request? I have this code: { QNetworkRequest request; request.setUrl(QUrl("http://www.foo.com")); request.setRawHeader("User-Agent", ...
1
vote
0answers
45 views

qt with xml and qnetworkaccessmanager

Im trying to make a Qt Project, where i have a vector<todo_list> filled with simple entrys (Name,Description,Date) only QString an QDate. I want to save these entrys as a xml file and upload it ...
0
votes
0answers
116 views

Qt QNetworkRequest::RedirectionTargetAttribute can't detect redirection

Im trying to do get request to web site , when i getting the site html in the : reply = m_networkManager->get("www.siteexample.de"); reply->readAll() the response string is : ...
0
votes
3answers
77 views

error in Qt:' Not such Slot ' when Using Qnetwork access manager with threads

I am in troubled situation on using QNetworkAccessManager in QThread. The same functions working fine without using threads. I am currently using only one thread and I need to add few more also. It ...
2
votes
0answers
245 views

QNetworkAccessManager Memory Leakage

I am having some trouble with memory leaks while using the QNetworkAccessManager (using Qt). The more requests I call, the more memory is allocated. This makes sense, but not to me with the way I do ...
0
votes
2answers
279 views

Qt Update after network reply

I am working with Qt creator to make a GUI program that takes in different URLs and will download and display the html code. The user can add different URLs to a listWidget. Then the user can select ...
0
votes
0answers
203 views

QNetworkReply works selectively with QEventLoop and never without it

QNetworkAccessManager and in particular QNetworkReply is acting very strangely for me and I've tried different methods online. The task at hand is to send multiple requests to a FTP server and ...
0
votes
1answer
144 views

QNetworkReply causes segfault

I'm trying to write some kind of API client for PyQt4-based app. And, following this documentation i wrote this code: from PyQt4 import QtCore, QtNetwork class API(QtCore.QObject): def ...
2
votes
1answer
49 views

Unmatching results from browser and code while retrieving a page with QNetworkRequest and QNetworkAccessManager

I'm writing a simple web spider. The idea is to get a page programmatically using QNetworkAccessManager, QNetworkReply and QNetworkRequest, everything works fine. The problem I encounter is that (for ...
1
vote
2answers
264 views

Qt QNetworkAccessManager & multiple QNetworkReplay

I have two http get methods. First is getting UserID and second is getting full information about current user; I want to handle finished signlas with different slots handle GetUserID finished ...
0
votes
2answers
796 views

Qt QNetworkAccessManager and multiple QNetworkReply

I have two get QNetworkRequest. I want to handle finished signals from different methods. For example this is code in MainWindow::MainWindow(QWidget *parent) : QMainWindow(parent), ui(new ...
1
vote
1answer
885 views

Handling network timeout in Qt

When dealing with QNetworkReply, it is prescribed to use timers to abort the connection. Here is my current code: void ImageDownloader::download(QString imgUrl){ this->timeoutTimer = new ...
0
votes
1answer
156 views

Obtain remote IP from QNetworkAccessManager

When using QNetworkAccessManager, is there any way to get http connection info, like local ip/remote ip? I need to record such connection info for each QNetworkReply/Request pair. Thanks a lot.
1
vote
1answer
227 views

QtWebKit QWebPage::acceptNavigationRequest and POST data

is it possible to access POST data at this (QWebPage::acceptNavigationRequest) moment? I wish to peek at request's POST data there because I locked navigation and I don't have the opportunity at ...
2
votes
2answers
117 views

QNetworkAccessManager->get freezes when called in DLL

I have a dll where I want to do some networking, this dll is called from an C# application as an unmanaged DLL. All initialization works fine but it freezes everytime the ->get() is supposed to run. I ...
0
votes
0answers
158 views

QNetwork: Missing body in PUT-requests, not always reproducible

For a project containing client-applications and a central server we're sending get, post, delete and put requests using QNetworkAccessManager/QNetworkRequest/QNetworkReply to a REST-Interface on the ...
1
vote
1answer
162 views

Fiddler doesn't capture QT QNetworkAccessManager Traffic?

I am testing a QT C++ application using QNetworkAccessManager that is successfully making HTTP posts, but I can't see the posts in Fiddler. What am I missing in the Fiddler setup? I understand ...
2
votes
1answer
88 views

Is loading a built exe from QT Creator different from loading the exe from file system? [webkit issue]

I'm writing a desktop app that connects to my company's intranet. The page I'm trying to load is HTTP, but it will redirect to a login site that uses HTTPS. The app loads the page well when launched ...
2
votes
1answer
236 views

Method to reset the QNetworkAccessManager backend

It seems that QNetworkAccessManager does not handle missing files retrieved by ftp if the ftp server requires authentication. The situation is this: I'm downloading multiple files from the same ...
0
votes
0answers
455 views

QT HTTPS POST request [closed]

I am trying to send a notification to notifymyandroid via QT and C++. I have tried this example. I tested it with this, and it worked. Sites reply is "Parameter 'apikey' not provided.". Here is my ...
4
votes
1answer
268 views

How to use QNetworkAccessManager in different classes? General sharing of important data between classes?

I have a MainWindow application I'm working on to learn C++ and Qt (C++ and QT 4.8). I want to do HTTP requests in different objects of my application, such as Dialogs/Wizard and in the MainWindow. I ...
0
votes
1answer
290 views

QNetworkAccessManager issue getting web page

I am trying to download the source code of a web page with the following code in header file: #include <QObject> #include <QHttp> #include <QtNetwork> #include <QFile> ...
0
votes
0answers
125 views

QNetwork: QAuthenticator doesn't work for PUT-Requests

I've got a very annoying problem: For a project containing client-applications and a central server we're sending get, post, delete and put request using ...

1 2 3