Tagged Questions
The qnetworkaccessmanager tag has no wiki summary.
4
votes
1answer
1k views
QNetworkRequest and default SSL configuration
I'm using the following piece of code to make HTTPS requests with a server.
QNetworkRequest request;
//request.setSslConfiguration(QSslConfiguration::defaultConfiguration());
...
3
votes
2answers
1k views
How to tell QWebPage not to load specific type of resources?
How to tell QWebPage not to load specific type of resources like js, css or png?
3
votes
2answers
4k views
Uploading a file using post() method of QNetworkAccessManager
I'm having some trouble with a Qt application; specifically with the QNetworkAccessManager class. I'm attempting to perform a simple HTTP upload of a binary file using the post() method of the ...
2
votes
2answers
393 views
QNetworkAccessManager problem
I'm trying to open a web page using QNetworkAccessManager - and for some pages it works fine - while for others it does not. I tried setting a real browser user-agent, however it still doesn't work ...
2
votes
1answer
303 views
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 I discovered that there doesn't exist a sftp library for Qt but it should be possible with ...
2
votes
1answer
214 views
QT display image obtained from network access manager
I am trying to display the image obtained from the get request made using networkaccess manager. I am able to compile and even able to run it. but I am unable to show the image in a Qlabel.
...
2
votes
1answer
312 views
Qt multipart post problem
I need help with sending multipart post request. Main problem is that server doesn't recognise my request's post body part. Server side is working fine with android, but not with Qt and ...
2
votes
1answer
615 views
QT 4.7.4 QNetwork on symbian using 3g
is it possible to use QNetworkRequest on symbian to make a HTTP request via 3G ?
I've a code that work on simulator, but when i put it in device, the device try to connect via wifi.
i've try to add ...
2
votes
2answers
250 views
How to obtain QNetworkAccessManager's connection states?
I need to see different connection states of QNetworkAccessManager. How to do it or is it even possible with QT?
Example in QHttp, there is enum state:
QHttp enum state
QTCPSocket, there is ...
2
votes
2answers
426 views
QNetworkAccessManager from ThreadPool
A very fundamental question. The documentation mentions that all methods in QNetworkAccessManager are reentrant. If so, is performing a get() method in a QRunnable without locks legal? My code would ...
2
votes
2answers
467 views
Support for https using QNetworkAccessManager. Hitting SslErrors at runtime
I am performing a https get operation with QNetworkAccessManager. I am hitting SSLErrors at runtime.
After researching for a while I was able to get my program running after installing OpenSSL. I ...
2
votes
1answer
325 views
PyQt: how to use QWebPage with an anonimous proxy
This is driving me crazy.
I want to show in a QWebPage an url, but i want to do it passing by an anonimous proxy.
Code
#setting up the proxy
proxy = QNetworkProxy()
...
2
votes
2answers
2k views
QT HTTP Post issue when server requires cookies
I have been trying this whole day with no success. Please help in solving the issue. On googling I found many users had this issue but nowhere I could find a solution.
I am trying to do HTTP post in ...
2
votes
1answer
440 views
Continuous uploading causes QNetworkReply error “Cannot allocate memory”
I have an Qt application for symbian that receives gps data, stores it into a database and tries to post it to a server. First two steps work fine but continuous posting either crashes my application ...
2
votes
1answer
1k views
How can I use Qt to get html code of the redirected page?
I'm trying to use Qt to download the html code from the following url:
http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=nucleotide&cmd=search&term=AB100362
this url will re-direct to
...
1
vote
1answer
136 views
QNetworkReply emits error signal twice when ContentNotFoundError occures when event loop is started in error slot
Im using QtSDK 4.7.3
I am doing this in (void test()):
mgr = new QNetworkAccessManager();
reply = mgr->get(QNetworkRequest(QUrl("http://developer.qt.nokia.com/fileNotExisting.txt")));
...
1
vote
1answer
198 views
QnetworkReply error - Symbian Qt
I have the following piece of code.
QNetworkAccessManager *man = new QNetworkAccessManager(this);
QNetworkRequest getRequest;
getRequest.setUrl((QUrl)requestUrl);
m_svcReply = ...
1
vote
1answer
252 views
How to download a csv file (behind a __dopostback) with Qt
I need a function to download csv files from "Meeting Results" in:
http://www.rwwa.com.au/cris/meetingdownload.aspx?meeting=15014
The problem is that you need to click the "Meeting Results" link to ...
1
vote
2answers
1k views
QNetworkReply wait for finished
I am using Qt 4.6.3 and the following not-working code
QStringList userInfo;
QNetworkRequest netRequest(QUrl("http://api.stackoverflow.com/1.1/users/587532"));
QNetworkReply *netReply = ...
1
vote
2answers
313 views
QNetworkReply - connection established, first byte written, etc
I'd like to log the lifetime of a QNetworkReply object. This includes:
When the underlying socket connection is established
When the first byte of the request is sent
When the first byte of the ...
1
vote
1answer
171 views
How to download by block with Qt?
For many reasons i need to download file by piece of 1024 byte.
I find nothing in QnetworkAccessManager.
I can not use the "header technic" because my server don't support it.
I call header technic, ...
1
vote
1answer
643 views
Qt Jambi: Accessing the content of QNetworkReply
I'm having trouble accessing the content of QNetworkReply objects. Content appears to be empty or zero. According to the docs (translating from c++ to java) I think I've got this set up correctly, but ...
1
vote
1answer
714 views
Run several url requests in a loop in Qt
In Qt I need to connect and check for updates on several servers and for this I'm using QNetworkAccessManager. The problem is that I don't want to connect to the next url until the current request has ...
1
vote
1answer
974 views
Qtestlib: QNetworkRequest not executed
I would like to test an asynchronous request to a webserver. For that purpose I'm creating a simple unittest to quickly try a few lines of code:
void AsynchronousCall::testGet()
{
...
1
vote
0answers
142 views
how can i make sure to get the server response correctly when i invoke the server with QNetworkRequest->get()?
I wrote the server site call in Qt, but i haven't get the server response for every server invoking. I have to use the server reply to continue the program flow.
The request is correctly reached to ...
1
vote
1answer
813 views
QNetworkAccessManager/QNetworkReply with custom QTcpSocket?
Is there any way to replace QSslSocket used by QNetworkAccessManager with my own implementation?
I was really looking forward to use WebKit!!
I'm working on attaching PKCS11 implementation to our Qt ...
0
votes
0answers
23 views
Qt,SignatureDoesNotMatch, QNetworkAccessManager
When I use this
http://www.thinking-man.com/blog/entry.php?15-Using-QNetworkAccessManager-to-Download-Files-with-a-Progress-Dialog
I get this result
...
0
votes
0answers
30 views
QNetworkAccessManager put method doesn't work in 3G connection (Meego)
Currently I am having serious problem in QNetworkAccessManager with QT Creator. I am sending put request to the server and the errors comes in only on 3G connection. It works inside Simulator and also ...
0
votes
3answers
37 views
Check if a file equals to other
Well i have one file on my server and other on my computer. What i want to do is a simple updater that checks if the file of my computer is equal to the one uploaded in the server. (If it's equal then ...
0
votes
2answers
117 views
How allow QNetworkAccessManager to run HTTP requests in seperate thread
I want QNetworkAccessManager to run HTTP requests in seperate thread. Currently in QT4.6 it is running in the same thread and it causes my browser to hang.
This feature is recently introduced in QT ...
0
votes
1answer
72 views
Qt QNetworkAccessManager get doesn't work for all websites
any idea why this code works for some webpages and for some not?
QNetworkAccessManager *nam = new QNetworkAccessManager(this);
QNetworkReply *reply = ...
0
votes
1answer
95 views
How can i Post the data in QtCreator?
Here is my code of Qt creator to send the data to PHP server and get the response.
QNetworkAccessManager *manager = new QNetworkAccessManager(this);
QNetworkAccessManager::connect(manager, ...
0
votes
0answers
65 views
How to send the data to server in Qt creator? [closed]
Possible Duplicate:
How can i Post the data in QtCreator?
Here is my code of Qt creator to send the data to PHP server and get the response.
QNetworkAccessManager *manager = new ...
0
votes
1answer
44 views
Qt QNetworkAccessManager abort authentication
In Qt, for QNetworkAccessManager we know that authenticationRequired() is called when the server returns HTTP 401 code.
Suppose the credentials are inputed by user and the password is incorrect. How ...
0
votes
1answer
49 views
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*)));
...
0
votes
0answers
164 views
Getting response using QNetworkAccessManager - finished not emited?
I got problem with QNetworkAccessManager
i got class:
const QString SERVER_URL = "http://xxx";
class CncDownloadedFile : public QObject
{
Q_OBJECT
public:
CncDownloadedFile(QString ...
0
votes
1answer
204 views
QNetworkRequest with ssl local certificate
I need to exchange data with server which requires local certificate (.crt file).
I try this:
loginRequest = QNetworkRequest(QUrl("https://somesite.com/login"));
QSslConfiguration sslConf = ...
0
votes
0answers
81 views
QNetworkReply::abort() is not actually aboting the process
In the QNetworkReply ;
when i am aborting the reply object it is not actully aborting the thead instead the process is still going on in the background as i can see the memory consumption of my ...
0
votes
1answer
122 views
how can I read the data sent from the server in a variable of type QNetWorkReply?
I have used this code to sent the user name and a password to the server using POST Method.
This returns me a reply,So how can I access the reply variable in the way that i can read the data sent from ...
0
votes
6answers
1k views
QObject: Cannot create children for a parent that is in a different thread
EDIT:
I tried doing what you guys told me in comments ... :
Citizen * c = new Citizen(this);
QThread thread;
c->moveToThread(&thread);
connect(&thread, ...
0
votes
1answer
183 views
Reading HTTP headers
I am trying to connect my application with a web service and here ,a user suggested to send custom headers back to my application.
I am using this code
void ...
0
votes
1answer
82 views
QNetworkProxy: unset proxy
How to unset the proxy settings in python set by QNetworkProxy.setApplicationProxy?
Sultan.
0
votes
2answers
690 views
Sending an HTTP request using QNetworkAccessManager
I've got a problem trying to send a request using QNetworkAccessManager from a QObject derived class.
Firstly in my constructor I do the following:
QObject::connect( &mAccessManager, SIGNAL( ...
0
votes
1answer
287 views
How do I manage proxies with QT QWebView
This is how I change proxy:
QNetworkProxy proxy;
proxy.setType(QNetworkProxy::HttpProxy);
proxy.setHostName("ip");
proxy.setPort(8008);
QNetworkProxy::setApplicationProxy(proxy);
It works properly ...
0
votes
2answers
344 views
Qt- QNetworkReply delete operator- Runtime Crash
In my Qt application, I am using QNetworkAccessManager in a Thread so as to keep my main thread free to do its task. For every get operation that I do, I am storing the QNetworkReply* in a list and ...
0
votes
0answers
377 views
QT QNetworkAccessManager Download Not Starting
I'm making a Minecraft Mod manager, and am trying to download the latest version of it using QNetworkAccessManager. Here's my code (most of it borrowed directly from the QT Documentation):
...
0
votes
0answers
348 views
QNetworkAccessManager and QFtp continue downloading after abort();
Im have weird problem with both QNetworkAccessManager and QFtp.
First I made ftp-class with QNAM which is initialized in MainWindow ( GUI )
the file downloading is done like this:
manager = ...
0
votes
1answer
668 views
Network session error with QNetworkAccessManager in Qt on a Symbian device
I'm trying to do an httpget on a Symbian mobile device in Qt 4.7.
I tested the program on Windows and on the Symbian emulator and they both work, but when I try it on the Symbian device I get an ...
0
votes
1answer
334 views
qt networkManager get
I want to download the url entered in the line edit widget.
I am not able to get it working , can some one please give me a short code snippet which can put the values of the file to a QString ?
...
0
votes
1answer
130 views
How can I POST Unicode data with QNetworkAcccessManager
I filled a QString object with Unicode data and tried to send it with QNetworkAcccessManager.post method and in server I received some ?????? instead of Unicode characters but the JSON format was ...