ASP page Crawl collection source content different system of different writing

Source: Internet
Author: User

Msxml.dll 80072ee2

The specific reason is the collection of local files caused by the detailed view: HTTP://SUPPORT.MICROSOFT.COM/KB/316451/ZH-CN

I was originally a 32-bit 2003 System (Standard version), collected with msxml2.xmlhttp.4.0, a page of 9 seconds or so. Change to Msxml2.serverxmlhttp after 7 seconds or so.
When the system is changed to 64-bit 2008 system (R2 Enterprise Version), with msxml2.xmlhttp.4.0 error, with msxml2.serverxmlhttp 70 seconds or so.
Later tested with code:
<%on Error Resume Next
Response.Write "Oxml=array ("msxml2.serverxmlhttp.6.0", "msxml2.serverxmlhttp.5.0", "msxml2.serverxmlhttp.4.0", " msxml2.serverxmlhttp.3.0 "," Msxml2.serverxmlhttp "," msxml2.xmlhttp.6.0 "," msxml2.xmlhttp.5.0 "," Msxml2.XMLHTTP.4.0 "," msxml2.xmlhttp.3.0 "," Msxml2.xmlhttp ")
For i=0 to UBound (oXML)
Set getxmlhttp = Server.CreateObject (oXML (i))
If ERR Then
Err.Clear
Response.Write "Not supported" &oxml (i) & "<br/>"
Else
Response.Write "Support" &oxml (i) & "<br/>"
End If
Next%>
found that 64-bit 2008 does not support xmlHttp4.0, changed to xmlhttp.6.0 after running for 8 seconds. But with serverxmlhttp.6.0, more than 70 seconds.

Why in 2003 ServerXMLHTTP than XMLHTTP faster, and in 2008 ServerXMLHTTP than XMLHTTP slow. (mainly slow too much, about 10 times times the difference)

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.