Hi All,
I'm trying to get QtWebkit to work nicely with ssh. It usually does so
out-of-the-box but the problem is for some machines it does not.
On the problematic machines, an SSL error signal is sent.
If I print the errors to a log file I get the error code: QSslError::NoError
I suspect it had something to do with old certificate files on the
machines, so I tried bunding my own root ca (which works well in
curl/wget). Here's the code I use to tell Qt to use my root CAs:
QString capath = LicenseUtils::adjustPath(":/ca-bundle.crt");
if ( QFile::exists(capath) )
{
QList<QSslCertificate> cacerts = QSslCertificate::fromPath(capath);
QSslSocket::setDefaultCaCertificates(cacerts);
QLOG_INFO() << "[Main] Using certs bundle";
}
Unfortunately, this still doesn't work.
Any ideas how to find out what's wrong and/or fix it ?
Thanks In Advance,
Ynon
_______________________________________________
Interest mailing list
[email protected]
http://lists.qt-project.org/mailman/listinfo/interest