The connection with the server was terminated abnormally

mikeypsooner

New Member
Joined
May 16, 2017
Messages
33
I am currently trying to pull some data on the internet using the code below but I am getting the run-time error message of "the connection with the server was terminated abnormally" This code used to work but I recently got upgraded to Windows10 and I just now tried and didnt work. Any thoughts?

Code:
Sub http()
Dim MyRequest As Object


    Set MyRequest = CreateObject("WinHttp.WinHttpRequest.5.1")
    MyRequest.Open "GET", _
    "http://www.google.com"


    ' Send Request.
    MyRequest.send


    'And we get this response
    MsgBox MyRequest.responseText


End Sub
 

Excel Facts

Easy bullets in Excel
If you have a numeric keypad, press Alt+7 on numeric keypad to type a bullet in Excel.
I actually changed the web address to "https://www.google.com" I added the "s" and it worked. But I am trying to enter the web address "http://bigcharts.marketwatch.com/quotes/multi.asp?view=qc&msymb=" and I get the same error message The connection with the server was terminated abnormally

Thoughts?
 
Upvote 0

Forum statistics

Threads
1,214,924
Messages
6,122,294
Members
449,077
Latest member
Rkmenon

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top