[Webkit-unassigned] [Bug 29413] [Qt] browser.exe fails to load SSL web site, handshake failed.
bugzilla-daemon at webkit.org
bugzilla-daemon at webkit.org
Tue Feb 2 08:10:26 PST 2010
https://bugs.webkit.org/show_bug.cgi?id=29413
Ulrich.Kuhn at gmx.de changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |Ulrich.Kuhn at gmx.de
--- Comment #3 from Ulrich.Kuhn at gmx.de 2010-02-02 08:10:25 PST ---
Might this simply have to do with the "protocol" used?
I am having a similar problem with an SSL server of a customer.
Using Qt 4.5.2 with Windows.
A simple
QNetworkReply reply = QNetworkAccessManager.get(... URL with https ...)
And in the finished() slot:
reply.error() == 6 (= SSL handshake failed)
No SSL error was raised before.
However setting the used protocol to QSsl::TlsV1 it works:
QSslConfiguration ssl = QSslConfiguration::defaultConfiguration();
ssl.setProtocol(QSsl::AnyProtocol);
QSslConfiguration::setDefaultConfiguration(ssl);
This also works with the server in the first comment.
If this is the reason this might be just a missing error message of Qt or
OpenSSL.
--
Configure bugmail: https://bugs.webkit.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
More information about the webkit-unassigned
mailing list