IE 7 causing problems with Com+

Greetings,
I've created a com+ dll that uploads files, checks for a file extension and file size among other things. If the file is too large or has no extension an error is raised. This works like a charm in IE 6, but in IE 7 if the file is over 2048 kb and I raise an error that the file is too large. IE 7 dumps me to a cannot display web page error. I cant seem to find anything that relates to this so, I would really appreciate it if someone could help out and shed some light on this for me.
Thank you in advance.
D
[541 byte] By [Snow_Dogs] at [2007-11-20 11:55:41]
# 1 Re: IE 7 causing problems with Com+
It is having time-out errors at 30 seconds? That's a 'feature' of ie7, down from 1 minute in ie6 and 7 minutes before that.
dglienna at 2007-11-9 19:31:56 >
# 2 Re: IE 7 causing problems with Com+
Hi,
Thanks for the info.
I changed the HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\InternetSettings\KeepAliveTimeout to 180000 and HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\InternetSettings\ServerInfoTimeout to 18000 as well.
This didn't seem to help. I timed the execution time and the error page is being returned within 5 seconds, well before the 30 second timeout.
Cheers D
Snow_Dogs at 2007-11-9 19:32:56 >
# 3 Re: IE 7 causing problems with Com+
Not that one! :)
8 minutes = 48000

repair.reg
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Internet Settings]
"ReceiveTimeout"=dword:00075300


IE7 deleted the key that was there.

EDIT: typo fixed
dglienna at 2007-11-9 19:34:00 >
# 4 Re: IE 7 causing problems with Com+
Thanks for pointing me in the right direction. I added Key and just for good measure I rebooted the machine. I'm still getting Internet Explorer Cannot Display Web Page if the file selected for upload is over 2048 kb. I've timed the response from clicking the upload button to the return of the error page and it returns the error page within two seconds. Any other ideas?
Snow_Dogs at 2007-11-9 19:34:54 >