Hi All, There does not seem to be any communication errors in the table
that lists all of the Reason Response Codes. A few examples of the
communication errors I was looking for are: Failed to initialize SSL
connectionFailed to create socketFailed to...
Hi All, What is the maximum length of a Transaction ID in AIM?In the
documentation, it is listed as a string and the transactionIDs that I am
receiving from my test application are 10 numbers. Is this the maximum
length for field? Thanks,Gloria
To all, I am using AIM in a Console Application in C# to learn how
Authorize.Net works. My application works fine. But one of the response
options I need is Card Code Response. I can use Intellisense to get the
response values for ResponseCode, Messa...
I can successfully run the AIM example code which posts transactions
using ASP.NET.When I change the transaction types from Auth_Capture and
Capture_Only and add the x_auth_code, it is also successfully. When I
remove the x_auth_code, it responds as ...
Hi all, I am new to Authorize.Net. I am trying to find any documentation
in the steps required to implement Voice Authorization in AIM. I created
a Console App in C# to create transactions using AIM and it works fine.
I am using the Authorize and Cap...
Yep. That did it. The CCVResponse is now 'P' - Not Processed. Could you
tell me or point me to the document that describes how the options, 'S'
- 'Should have been present' and 'U' - 'Issuer unable to process
request' are determined? Thanks alot!
From the documentation, the CCVResponse is in order 39 or index [38]. At
this index [38] the value is "". In position [39] the value is "2" which
corresponds with the Cardholder Authentication Verification Response -
'CAVV passed validation'
I am able to return the CCVResponse, but the value is null.This is my
code: var request = new AuthorizationRequest("CCNumber", "0214",
850.00M, "Authorize Only Transaction", false); var gate = new
Gateway("LoginValue", "TransKey"); GatewayResponse re...
I have done that.I created a Console Application that will send an
AuthorizationRequest as shown below: var request = new
AuthorizationRequest("SomeCard#", "0214", 283.00M, "Authorize Only
Transaction", false); var gate = new Gateway("LoginValueNotSh...