Hey everyone,
I'm facing some trouble when using the class QNetworkAccessManager.
I use this class to receive response for a simple URL (http://iconic.4feets.com/update).
Working fine if my system have no proxy.
m_pNetworkReply = m_pNetworkAccessManager->get(QNetworkRequest( QUrl (URL) );
The problem is, if the computer is using a proxy, I've set the QNetworkProxy instance with the values received using UI.
Is there a way to match the settings of the default browser?
Thanks in advance.