The QtNetwork module provides classes to make network programming easier and portable.
0
votes
1answer
2k views
problem in making custom root certificate store for SSL using QT?
I am developing my custom browser in Qt using QWebView and
I am trying to make my own root cert store of trusted certificates which are taken from mozilla project.
I have used ...
1
vote
1answer
184 views
QtNetwork SSL Handshake error on https://service.oneaccount.com/onlineV2_B/OSV2?event=login&pt=3
When I use my QT application to download this page: https://service.oneaccount.com/onlineV2_B/OSV2?event=login&pt=3 with QNetworkAccessManager->get(url), I got a network error ...
0
votes
1answer
180 views
Downloading a file with Qt?
I am trying to figure out a way for my Qt browser app can download a word document from our web app. The web app is written in ExtJS, when (in a browser such as Chrome) a user clicks the "Download ...
0
votes
2answers
506 views
How to send data back from PHP after a HTTP Post in Qt?
I'm using this code to make a simple HTTP Post ( a login )
QNetworkAccessManager *nwam = new QNetworkAccessManager;
QNetworkRequest request(QUrl("http://localhost/laptop/trylogin.php"));
...