how to download a file from ssl
-
hi
i using QNetworkAccessManager & QNetworkReply i can download non-ssl but i can't download a file With ssl like this file : https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png -
@ARASHz4
connect to QNetworkAccessManager's sslErrors() signal and check why it is called. -
@ARASHz4, Hi, link your project with openssl libraries libssl and libcrypto and it will be ok.....
-
@stephane78
They are loaded when needed, so absolutely no need to link against them and introduce another dependency. -
@raven-worx i connect sslErrors :
connect(reply, SIGNAL(sslErrors(QList<QSslError>)), this, SLOT (sslErrors(const QList<QSslError>&)));
but don't call sslErrors
when i start a download in my app, in application output return this :qt.network.ssl: QSslSocket: cannot resolve TLSv1_1_client_method qt.network.ssl: QSslSocket: cannot resolve TLSv1_2_client_method qt.network.ssl: QSslSocket: cannot resolve TLSv1_1_server_method qt.network.ssl: QSslSocket: cannot resolve TLSv1_2_server_method qt.network.ssl: QSslSocket: cannot resolve SSL_select_next_proto qt.network.ssl: QSslSocket: cannot resolve SSL_CTX_set_next_proto_select_cb qt.network.ssl: QSslSocket: cannot resolve SSL_get0_next_proto_negotiated
-
in install OpenSSL in my system after i installed this in application output don't return this:
qt.network.ssl: QSslSocket: cannot resolve TLSv1_1_client_method qt.network.ssl: QSslSocket: cannot resolve TLSv1_2_client_method qt.network.ssl: QSslSocket: cannot resolve TLSv1_1_server_method qt.network.ssl: QSslSocket: cannot resolve TLSv1_2_server_method qt.network.ssl: QSslSocket: cannot resolve SSL_select_next_proto qt.network.ssl: QSslSocket: cannot resolve SSL_CTX_set_next_proto_select_cb qt.network.ssl: QSslSocket: cannot resolve SSL_get0_next_proto_negotiated
but Still i cant download a file from ssl
-
Digging through your files i found this
QUrl Url; if(!DownloadListUrl[currentDownload].contains("http://")) { Url = "http://" + DownloadListUrl[currentDownload]; } else { Url = DownloadListUrl[currentDownload]; } FileDownload = new Downloader(Url, this);
This is impossible to work. If you have an URL like "https://upload.wikimedia.org/wikipedia/commons/thumb/5/5d/Fibonacci_spiral.svg.png/120px-Fibonacci_spiral.svg.png"
this piece of code does not find http:// in the URL string and will prepend it so it will be "http://https://upload.wikimedia.org/wikipedia/commons/thumb/5/5d/Fibonacci_spiral.svg.png/120px-Fibonacci_spiral.svg.png" afterwards.