//  home   //  advanced search   //  news   //  categories   //  sql build chart   //  downloads   //  statistics
 ASP FAQ 
Home
ASP FAQ Tutorials

   8000XXXX Errors
   ASP.NET 2.0
   Classic ASP 1.0
      COM / ActiveX Components
      Forms
      General Topics
      Date/Time Routines
      Email Scripts & Info
      Files/Directories & FSO
   Databases
   General Concepts
   Search Engine Optimization (SEO)

Contact Us
Site Map

Search

Web
aspfaq.com
tutorials.aspfaq.com
classicasp.aspfaq.com

ASP FAQ Tutorials :: Classic ASP 1.0 :: COM / ActiveX Components :: Why do I get 80072EE2 errors?


Why do I get 80072EE2 errors?

msxml3.dll error '80072ee2'  
The operation timed out
 
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.  
 

Related Articles

Can I code ISAPI filters / extensions with Visual Basic?
DLL: How do I avoid 'Permission Denied' when re-compiling?
How do I detect browsers without components?
How do I determine if a COM object is installed?
How do I determine if a VBScript-based object exists?
How do I generate PDF files from ASP?
How do I generate RTF documents from ASP?
How do I handle MD5 from ASP?
How do I pass server-side values to a client-side ActiveX control?
Should I close my objects and/or set them to nothing?
Should I store objects in session/application scope?
Should I use CreateObject or Server.CreateObject?
When does ASP release COM objects?
Where can I get a shopping cart for my web site?
Where can I get an updated version of browscap.ini?
Why do I get 'Server.CreateObject Access Error'?
Why do I get 8000401A errors?
Why do I get 80040111 errors?
Why do I get 80040112 / 8007045A errors?
Why do I get 800401F3 / 800A01AD errors?
Why do I get 80040460 errors?
Why do I get 80040514 errors?
Why do I get 8007000E errors?
Why do I get 8007007E / 8007007F errors?
Why do I get 80072EE5 errors?
Why do I get 800A0030 errors?
Why do I get 800A005B errors?
Why do I get 800A9C68 errors?
Why do I get 800C0007 errors?
Why does Browscap give me 'unknown' or tell me IE is Netscape?

 

 


Created: 9/15/2002 | Last Updated: 1/13/2006 | broken links | helpful | not helpful | statistics
© Copyright 2006, UBR, Inc. All Rights Reserved. (269)

 

Copyright 1999-2006, All rights reserved.
Finding content
Finding content.  An error has occured...