G
Guest
Hi everyone
I am trying to get the content of any webpage (URL) using XMLHTTP, and it
is working fine for me, but suddenly I have got
a URL "http://www.bizrate.com/" which is causing a system error and the
error is
System.Runtime.InteropServices.COMException(0xC00CE56E): System error:-
1072896658
here is the code, which I am using to get the content
''''''''''''''''''''''''''''''''''''''''''''''
Dim a As Object
a = CreateObject("Microsoft.XMLHTTP")
a.open("GET","http://www.bizrate.com/",False)
a.Send("")
TextBox1.Text = a.ResponseText
''''''''''''''''''''''''''''''''''''''''''''''
Can anybody help me to solve this problem, I have tried it using VB6 also,
and VB6 is also showing the same error.
One more thing I want to say about this, is that, I have got the content of
the URL "http://www.bizrate.com/" by typing the
address into the addressbar of the browser (IE), and got the HTML from
view->source, and then saved the HTML into my
localhost and changed the URL by "http://localhost/testpage.html and the
application worked for me, but it is not working
when the URL is used with XMLHTTP
Kajol
I am trying to get the content of any webpage (URL) using XMLHTTP, and it
is working fine for me, but suddenly I have got
a URL "http://www.bizrate.com/" which is causing a system error and the
error is
System.Runtime.InteropServices.COMException(0xC00CE56E): System error:-
1072896658
here is the code, which I am using to get the content
''''''''''''''''''''''''''''''''''''''''''''''
Dim a As Object
a = CreateObject("Microsoft.XMLHTTP")
a.open("GET","http://www.bizrate.com/",False)
a.Send("")
TextBox1.Text = a.ResponseText
''''''''''''''''''''''''''''''''''''''''''''''
Can anybody help me to solve this problem, I have tried it using VB6 also,
and VB6 is also showing the same error.
One more thing I want to say about this, is that, I have got the content of
the URL "http://www.bizrate.com/" by typing the
address into the addressbar of the browser (IE), and got the HTML from
view->source, and then saved the HTML into my
localhost and changed the URL by "http://localhost/testpage.html and the
application worked for me, but it is not working
when the URL is used with XMLHTTP
Kajol