当前位置: 代码迷 >> ASP >> msxml3.dll 异常 '800c0005' 系统未找到指定的资源
  详细解决方案

msxml3.dll 异常 '800c0005' 系统未找到指定的资源

热度:572   发布时间:2012-03-22 17:43:57.0
msxml3.dll 错误 '800c0005' 系统未找到指定的资源
Set   xmlhttp   =   server.CreateObject( "Msxml2.XMLHTTP ")
用这个来调用别人的WebService,总是提示:“   msxml3.dll   错误   '800c0005 '  

系统未找到指定的资源。     ”

我尝试各种办法都不好用。这东西和tcp/ip的端口过滤有关系么?希望大家帮忙解决。
附录代码如下:

Set   xmlhttp   =   server.CreateObject( "Msxml2.XMLHTTP ")
xmlhttp.Open   "POST ",url,false
xmlhttp.setRequestHeader   "Content-Type ",   "text/xml;charset=utf-8 "
xmlhttp.setRequestHeader   "HOST ",ip
xmlhttp.setRequestHeader   "Content-Length ",LEN(SoapRequest)
xmlhttp.setRequestHeader   "SOAPAction ",   "http://tempuri.org/exptime "  
xmlhttp.Send(SoapRequest)

------解决方案--------------------
Msxml2.XMLHTTP改成Msxml2.XMLHTTP3.0或者4.0试试
------解决方案--------------------
楼上的方法不行啊!