MissouriTiger
Programmer
NOTE: I posted a similar question on the ASP forum a few days ago and no one was ableto help (------------------
I'm attempting to set up a PayPal direct payment system on a client's website (using 3-token authentication, not certificate authentication). My XMLHTTP request generates the following error:
'''''''''ERROR MSG '''''''''''''''''''''''''''
"msxml3.dll error '800c0008'
The download of the specified resource has failed.
/PayPalFunctions_GREG.asp, line 213 "
'''''''''END ERROR MSG '''''''''''''''''''''''
I've been stuck on this problem for a considerable time. My boss is pulling me off of this project and it's a big letdown. I'm too inexperienced to know where to turn next.
I want to get this thing working so bad I'm working on it on my own time without pay.
Below is the code for my XMLHTTP request, but you can download the whole test program at:
That way you can run it and see for yourself what happens.
''''''''''''''''''''''''''''''''''''''''''''''''''''
CODE (XMLHTTP request)
''''''''''''''''''''''''''''''''''''''''''''''''''''
Dim objHttpRequest, objResponseXMLDoc, objNodeList
set objHttpRequest = Server.createObject("Microsoft.XMLHTTP")
objHttpRequest.open "POST", strPayPalAPIUrl, False
objHttpRequest.setRequestHeader "Content-Type", "text/xml"
objHttpRequest.setRequestHeader "SOAPMethodName", "urn:ebay:apiayPalAPI"
objHttpRequest.send strSoapRequest
'THIS IS AS FAR AS IT GETS BEFORE I GET THE ERROR MESSAGE.
'etc, more code, etc...............
''''''''''''''''''''''''''''''''''''''''''''''''''''
END OF CODE
''''''''''''''''''''''''''''''''''''''''''''''''''''
Any help/suggestions will be greatly appreciated!!
Greg Norris
Software Developer
________________________________________________
Constructed from 100% recycled electrons.
I'm attempting to set up a PayPal direct payment system on a client's website (using 3-token authentication, not certificate authentication). My XMLHTTP request generates the following error:
'''''''''ERROR MSG '''''''''''''''''''''''''''
"msxml3.dll error '800c0008'
The download of the specified resource has failed.
/PayPalFunctions_GREG.asp, line 213 "
'''''''''END ERROR MSG '''''''''''''''''''''''
I've been stuck on this problem for a considerable time. My boss is pulling me off of this project and it's a big letdown. I'm too inexperienced to know where to turn next.
I want to get this thing working so bad I'm working on it on my own time without pay.
Below is the code for my XMLHTTP request, but you can download the whole test program at:
That way you can run it and see for yourself what happens.
''''''''''''''''''''''''''''''''''''''''''''''''''''
CODE (XMLHTTP request)
''''''''''''''''''''''''''''''''''''''''''''''''''''
Dim objHttpRequest, objResponseXMLDoc, objNodeList
set objHttpRequest = Server.createObject("Microsoft.XMLHTTP")
objHttpRequest.open "POST", strPayPalAPIUrl, False
objHttpRequest.setRequestHeader "Content-Type", "text/xml"
objHttpRequest.setRequestHeader "SOAPMethodName", "urn:ebay:apiayPalAPI"
objHttpRequest.send strSoapRequest
'THIS IS AS FAR AS IT GETS BEFORE I GET THE ERROR MESSAGE.
'etc, more code, etc...............
''''''''''''''''''''''''''''''''''''''''''''''''''''
END OF CODE
''''''''''''''''''''''''''''''''''''''''''''''''''''
Any help/suggestions will be greatly appreciated!!
Greg Norris
Software Developer
________________________________________________
Constructed from 100% recycled electrons.