Log in

View Full Version : Internet problems.


val21
Jan 23, 2008, 11:15 PM
Hi I have a problem with my internet. What happens is that I can't load some web sites and some downloads take a very long time downloading.
I can't go to microsoft.com or some websites that require a log in name and password. Luckly I can log in here, but not in myspace.com, yahoo.com mail, hotmail for my email. I also can't do windows update. I get an error code: 80072ee2. When I installed vista I could log in to all the websites. But after I did an windows updates this happened.
I tried uninstalling all my updates but they reinstall automatically.
I have tried to install another internet explorer but I get the message that this winodows is not compatible with ie7, but that's the one installed.

I have: windows vista
Internet explorer7.

val21
Feb 2, 2008, 11:37 PM
Hi thanks for giving time in reading about my problem. I tried looking for a solution in different places and could not find any help. At the end I just went back to windows xp. Like one site said upgrade vista to xp. Thanks.

Denvor
Feb 5, 2008, 08:17 AM
Error: 80072ee2 This means that the site you were trying to parse either could not be found, and the component gave up; or it is taking far too long for the page to finish loading. One way you can avoid this error is to set timeout values that are more conservative, e.g.:

<%
url = "http://www.espn.com/main.html"
set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP")

' resolve, connect, send, receive - in milliseconds
xmlhttp.setTimeouts 5000, 60000, 10000, 10000

xmlhttp.open "GET", url, false
xmlhttp.send ""
Response.write xmlhttp.responseText
set xmlhttp = nothing
%>

The four timeout values are as follows:

ResolveTimeout
This value is for the return of a DNS resolution (mapping the domain name to its representative IP address). The default value is infinite.

ConnectTimeout
This value is for establishing a connection with the server, and the default value is 60 seconds.

SendTimeout
This value is the time allowed for sending an individual packet of data to the server. The default value is 30 seconds.

ReceiveTimeout
This value is the time allowed for receiving an individual packet of data from the server. The default value is 30 seconds.