Hi,
I am using anet_java_sdk for Advanced Integration method. Can you please tell me where I can look for cvvResultCode(M/N/P/S) in the response. I am looking for get method name of result.getTarget().getCreditCard() class.
There is a createTransaction() method in net.authorize.aim.Transaction class. In that method also I dont see a code for extracting cvvResultCode from ResponseMap. Please advise if I am missing something.
Regards
Ramki
11-23-2011 12:17 PM
The createTransaction() method returns a new transaction object. There are more than one way to extract the reponse fields out of an AIM transaction object, but here is one example for retrieving the Card Code result:
String CardCodeResponse = result.getResponseField(ResponseField.CARD_CODE_RESPONSE);
Another method that may interest you is getResponseMap(), which returns all of the response fields.
11-28-2011 02:30 PM