Hi,

I have the following piece of code.
Qt Code:
  1. QNetworkAccessManager *man = new QNetworkAccessManager(this);
  2.  
  3. QNetworkRequest getRequest;
  4. getRequest.setUrl((QUrl)requestUrl);
  5.  
  6. m_svcReply = man->get(getRequest);
  7. connect(m_svcReply, SIGNAL(finished()),this, SLOT(getWebRequestFinished()));
  8. connect(m_svcReply, SIGNAL(error(QNetworkReply::NetworkError)),this, SLOT(webrequestFailed(QNetworkReply::NetworkError)));
To copy to clipboard, switch view to plain text mode 


If I'm executing this request over WIFI, I get a proper response from the server.
However if I'm executing this request over 3G, I get a protocol "" is unknown error.

Any ideas why this might be happening?

Thanks