IE7 Problem

Hi Guyz!,

I have developed VB application which downloads files from server and process that data at client side. this application uses WinINet.dll functions for connecting to server through HTTP protocol. It is working fine with huge data also like 3MB. recently customers upgraded IE6 to IE7(they are using RC) and they are facing problems now. while downloading huge data(3MB) application showing 12002 - request timed out error. Is this know issue with IE7? any workaround to solve this error?

Application working fine for very small data with IE6 and IE7?

Please help...

Thx in advance,

Surya

[634 byte] By [suryasatya] at [2007-12-27]
# 1
IE 7 takes a lot of time while connecting to sites as it searches for phishing sites. So it results in a lot of time.So when downloading huge files it will result in a lot of time and thus resulting in a session timeout... I think this might be the cause for you error
DeepakKrishnan at 2007-9-4 > top of Msdn Tech,Community Chat,Hot Technology...
# 2

Hi,

You must set the option INTERNET_OPTION_RECEIVE_TIMEOUT, sample:

CHttpConnection* pServer = NULL;
DWORD dwTimeOut = <a big value>;

pServer = pSession->GetHttpConnection(....);
pServer->SetOption(INTERNET_OPTION_RECEIVE_TIMEOUT, &dwTimeOut, sizeof(dwTimeOut));

Good Luck....

Akira

MarcelloAN at 2007-9-4 > top of Msdn Tech,Community Chat,Hot Technology...