I am using the following code and it works fine if I select the connection type as Http and fails for https. Please suggest me any other steps to follow while using the https connection type.
Actually I am trying to authenticate with google accounts server and I an not getting any response from the server.
I checked for error message returned from the server in the requestfinished slot but the request seems to be succesful as there was no error returned.
connect(http, SIGNAL(done(bool)), this, SLOT(readResponse()));
connect(http, SIGNAL(requestFinished ( int id, bool error )), this, SLOT(requestFinished ( int id, bool error )));
QHttpRequestHeader header("POST", "/accounts/ClientLogin");
header.setContentType("application/x-www-form-urlencoded");
header.setValue("Host","https://www.google.com");
http->setProxy( "proxy.server.com", 8080,"username","password" );
http->setHost("www.google.com",QHttp::ConnectionModeHttps); -->Code works fine if the connection type
selected here is http
http->setUser ( "username","password");
http->request(header,readData);




