Hello,
I am using the sample ASP code from Authorize.net for CIM but I am getting this error:
Create profile...
API URL: https://apitest.authorize.net/xml/v1/request.api
Raw request: <?xml version="1.0" encoding="utf-8"?><createCustomerProfileRequest xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd"><merchantAuthentication> <name>YourUserLogin</name> <transactionKey>YourTranactionKey</transactionKey></merchantAuthentication><profile> <merchantCustomerId>custId123</merchantCustomerId> <description>some description</description> <email></email></profile></createCustomerProfileRequest>
msxml3.dll
error '800c0008'
The download of the specified resource has failed.
/dev_test1/asp_cim/util.asp, line 29
Please help!
โ08-29-2012 11:29 AM
The error at the end of your post appears to be a "file not found" type of error. The file "util.asp" is included in the CIM ASP Classic sample code download. You will want to make sure that it is in the correct place on the server so that your script can find it.
โ08-31-2012 02:04 PM
util.asp is in the correct place. What else could be causing this error?
โ09-13-2012 10:48 AM
See if their solution work for you
โ09-13-2012 12:20 PM
Do I need to buy a SSL certificate before using CIM?
โ09-13-2012 03:16 PM
If is on a web site, Yes.
โ09-13-2012 03:53 PM - edited โ09-13-2012 03:53 PM
So is the solution at http://community.developer.authorize.net/t5/Integration-and-Testing/Classic-ASP-sample-code-for-AIM-... a work-around to use CIM so a SSL certificate is NOT needed (for testing purposes)?
โ09-13-2012 04:22 PM - edited โ09-13-2012 04:23 PM
SSL is not needed for testing.
But I think the error you were getting is probably because the Microsoft.XMLHTTP is not found.
instead of
Set objRequest = Server.CreateObject("Microsoft.XMLHTTP")
use the following
Set objRequest = Server.CreateObject("MSXML2.ServerXMLHTTP.4.0")
โ09-13-2012 04:34 PM