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