cancel
Showing results for 
Search instead for 
Did you mean: 

Advanced Integration method - cvvResultCode ( Java SDK)

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

ramkibg
Member
1 REPLY 1

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.

 

Trevor
Administrator Administrator
Administrator