2014-09-13 8 views
1

다음 vbs 코드를 실행하는 동안 오류가 발생합니다 - 800A01AD. myRequest.Open "GET", strURL
myRequest.Send
msgbox myRequest.ResponseTextWinHTTPRequest : ActiveX 구성 요소가 개체를 만들 수 없습니다.

그것은 'ActiveX 구성 요소는 개체를 만들 수 없습니다'가 발생
Set myRequest = CreateObject("WinHTTP.WinHTPPRequest.5.1")

strURL = "http://maps.yahoo.com/maps_result.php?q1=newyork". 내 컴퓨터에 WinHTTP.dll이 등록되어 있습니다. 그 정품 복사/붙여 넣기는 다음의 경우

답변

1

당신은 CreateObject를에 오타가 ("WinHTTP에 있습니다. WinHTPPRequest .5.1")

0

그냥 MSXML2.ServerXMLHTTP와 시도를 포기하고 당신 또는 작동하는 경우 말해 안 그래?

On Error Resume Next 
Set File = WScript.CreateObject("MSXML2.ServerXMLHTTP") 
File.Open "GET", "http://maps.yahoo.com/maps_result.php?q1=newyork", False 
'This is IE 8 headers 
File.setRequestHeader "User-Agent", "Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30618; .NET4.0C; .NET4.0E; BCD2000; BCD2000)" 
File.Send 
If err.number <> 0 then 
    line ="" 
    Line = Line & vbcrlf & "" 
    Line = Line & vbcrlf & "Error getting file" 
    Line = Line & vbcrlf & "==================" 
    Line = Line & vbcrlf & "" 
    Line = Line & vbcrlf & "Error " & err.number & "(0x" & hex(err.number) & ") " & err.description 
    Line = Line & vbcrlf & "Source " & err.source 
    Line = Line & vbcrlf & "" 
    Line = Line & vbcrlf & "HTTP Error " & File.Status & " " & File.StatusText 
    Line = Line & vbcrlf & File.getAllResponseHeaders 
    wscript.echo Line 
    Err.clear 
    wscript.quit 
End If 

On Error Goto 0 

Set BS = CreateObject("ADODB.Stream") 
BS.type = 1 
BS.open 
BS.Write File.ResponseBody 
BS.SaveToFile "test.txt", 2