@PelleKrogstad
I too had the same requirement. Looking further into I found out that the slot for onIgnoreSslErrors was never called as it is required for Self Signed Certificates and which cause these SSL errors.
So actually the request needs to modified a bit which could be done by re-implementing createRequest
Thus in QNAM subclassed class:
And thus the ignoreSSLErrors slot was called where the errors were ignored. This worked for me. Let me know if it works for you.