It's probably just late and so I'm not seeing something, but the code that generates my XML statement didn't change and the util.asp file with the send command didn't change, nothing on my server changed, but I'm suddenly getting an error. (Obviously, something must have changed somehow, because it's not working. lol):
Here's what the feedback looks like:
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>xxxxxxxxxx</name
<transactionKey>xxxxxxxxxxxxxxxx</transactionKey>
</merchantAuthentication>
<profile>
<merchantCustomerId>272518</merchantCustomerId>
</profile>
</createCustomerProfileRequest>
Raw response:
<?xml version="1.0" encoding="utf-8"?>
<createCustomerProfileResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns="AnetApi/xml/v1/schema/AnetApiSchema.xsd">
<messages>
<resultCode>
Error
</resultCode>
<message>
<code>
E00001
</code>
<text>
An error occurred during processing. Please try again.
</text>
</message>
</messages>
<customerPaymentProfileIdList />
<customerShippingAddressIdList />
<validationDirectResponseList />
</createCustomerProfileResponse>
It takes a long time to get the error back - feels like a time out, almost. I rebooted my server, and it didn't help.
Earlier today in another part of the system (the part that retrieves a list of customer credit cards) I suddenly started getting the error "The download of the specified resource has failed", and again, it with no changes to the code. Seriously - one second it loaded fine, the next second it did not. I fixed that with a suggestion from a post here (change Set objHTTP = Server.CreateObject("MSXML2.ServerXMLHTTP")" to
Set objHTTP = Server.CreateObject("Microsoft.XMLHTTP")...included that here in case someone is searching for that error), but that didn't work for this other problem.
I'm lost.
It must be something obvious, but I'm just not seeing it.
Any clues?
Thanks so much,
Julie
Solved! Go to Solution.
06-29-2010 12:30 AM
I have automated tests that once passed, and now fail, with no changes. So I can almost guarantee its not you.
06-29-2010 03:37 AM
More information:
I had tried about everything...I normally work on a password protected development site, so I moved it over to live website to see if that would help. Live has a server certificate, and I tried both HTTP and HTTPS, and nothing helped.
I created a stripped down file with just the call to authorize.net, grabbed just the 2 routines I needed from util.asp (sendAPIRequest and MerchantAuthentication), so the file was as small as possible and still got the error.
Finally, I switched to api.authorize.net instead of apitest.authorize.net with the appropriate login information, and it worked quickly and perfectly.
So I edited the original files (the full page and the utlity file) to use the api.authorize.net...and again, it worked perfectly.
For testing I desperately need to use the test account.
Any ideas?
Thanks,
Julie
06-29-2010 02:44 AM
I am seeing a similar issue (error E00001 returning after about 30 seconds), so I suspect an issue with the test server.
06-29-2010 03:24 AM
Boy if one more person could confirm that, I'd go to bed. lol. It's 3:30AM here, and I've been beating on this for hours now.
J.
06-29-2010 03:29 AM
I have automated tests that once passed, and now fail, with no changes. So I can almost guarantee its not you.
06-29-2010 03:37 AM
You're my hero. It's bedtime. :)
06-29-2010 03:40 AM
And if you need any more confirmation, try creating a CIM payment profile via the UI at https://test.authorize.net. It doesn't work there either.
06-29-2010 03:41 AM
@Julie, tech team is aware of this issue. Follow results over here: http://community.developer.authorize.net/t5/Integration-and-Testing/Can-t-destroy-CIM-profile-in-tes...
06-29-2010 11:57 AM
Hey everyone,
It's true...we're having issues with CIM on the test server. Once we know more on when it will be fixed, we'll update this post. Sorry for the problems!! :smileysad:
Thanks,
Michelle
Developer Community Manager
06-30-2010 11:31 AM
I'm getting this problem too. And, I can't create one on the website either. Are there any problems?
08-01-2011 12:36 AM