maemo.org - Talk

maemo.org - Talk (https://talk.maemo.org/index.php)
-   Development (https://talk.maemo.org/forumdisplay.php?f=13)
-   -   [M5] https://login.live.com in qml webkit (https://talk.maemo.org/showthread.php?t=94642)

elros34 2015-02-20 23:55

https://login.live.com in qml webkit
 
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 2015-03-05 21:10

Re: https://login.live.com in qml webkit
 
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);


elros34 2015-03-06 11:35

Re: https://login.live.com in qml webkit
 
Thank you very much it works.


All times are GMT. The time now is 11:09.

vBulletin® Version 3.8.8