Reply
Thread Tools
Posts: 578 | Thanked: 994 times | Joined on Dec 2012
#1
Hello, I have a problem with https://login.live.com site. When I want to open it on pc using qml WebView element it's ok but on maemo it doesn't work. There is only one error: "QNetworkReplyImpl::_q_startOperation was called more then one" but I guess I saw it in other applications too.
Anybody have idea what is wrong and what I need to do to fix it?
 
marxian's Avatar
Posts: 2,448 | Thanked: 9,523 times | Joined on Aug 2010 @ Wigan, UK
#2
It's probably due to SSLv3.

Try this in main():

Code:
#include <QSsl>
#include <QSslConfiguration>
...

QSslConfiguration config = QSslConfiguration::defaultConfiguration();
config.setProtocol(QSsl::TlsV1);
QSslConfiguration::setDefaultConfiguration(config);
__________________
'Men of high position are allowed, by a special act of grace, to accomodate their reasoning to the answer they need. Logic is only required in those of lesser rank.' - J K Galbraith

My website

GitHub
 

The Following 3 Users Say Thank You to marxian For This Useful Post:
Posts: 578 | Thanked: 994 times | Joined on Dec 2012
#3
Thank you very much it works.
 
Reply

Thread Tools

 
Forum Jump


All times are GMT. The time now is 13:04.