I had created a script using the AIM Method, and it was working just fine earlier today.
Now, after a couple hours of a successful transaction, I am getting the following error message:
msxml3.dll error '800c0008'
The download of the specified resource has failed.
The line at fault is:
objRequest.send post_string
And the objRequest params are:
Dim objRequest, post_response
Set objRequest = Server.CreateObject("Microsoft.XMLHTTP")
objRequest.open "POST", post_url, false
objRequest.send post_string
post_response = objRequest.responseText
Set objRequest = Nothing
Not entirely sure why this is happening. I've tried the fixes suggested in this post, no luck though. Any thoughts?
08-18-2011 02:05 PM - edited 08-18-2011 02:07 PM
I am experiencing the same problem. It is sporadic in that sometimes it is successful and sometimes not. However, each time ran against the http://test.authorize.net link it successfully completes the request. Is there a fix?
01-13-2012 06:54 AM
That's just a general connection error, which means either your hoster is flaking out or Authorize.net's test server is flaking out. It could be either, but more likely the latter, since the test server can occasionally be unreliable.
01-13-2012 10:58 AM