I want to be able to read the headers sent back from a webpage in SSL mode. My Qt app however can\'t reach the webpage because it\'s in SSL mode I am gathering? Normal webvi
You need to connect your QNAM objects signal sslErrors(QNetworkReply *, QList<QSslError>) to a slot where you set QNetworkReply::ignoreSslErrors() and that'll allow QNAM to continue running. Qt Docs on it.