We are using the Java API to retrieve transaction details so that we can build some custom reports for our customers.
During the process of building out one of the reports, I noticed that the CardType was always coming back as unknown.
That issue turned out to be because of the following line of the net.authorize.reporting.Result:
creditCard.setCardType(CardType.findByValue(getElementText(credit_card_el, AuthNetField.ELEMENT_ACCOUNT_TYPE.getFieldName())));
which pulls the "accountType" value out of the message and then maps it to a CardType value. The problem is that on a credit transaction, the value comes from this field "cardType".
So, I added a new value to the AuthNetField enum:
ELEMENT_CARD_TYPE("cardType")
And then changed the line above to be:
creditCard.setCardType(CardType.findByValue(getElementText(credit_card_el, AuthNetField.ELEMENT_CARD_TYPE.getFieldName())));
Please update the Java API at your earliest convenience so that I can run against an official version.
Also, please take a look at the fix I submitted for the missing for incorrect shipping/billing information in the java reporting sdk.
Solved! Go to Solution.
12-20-2013 08:16 PM
Hello,
This issue is now resolved and an updated SDK is available from GitHub: https://github.com/AuthorizeNet/sdk-java/
Richard
04-02-2014 06:51 AM
Hello bkiefer,
I've forwarded your report to our product development team for analysis.
I'd recommend subscribing to this topic so that you'll be alerted via email for updates. To subscribe, click Topic Options at the top of this thread and then select Subscribe. You'll then receive an email once anyone replies to your post.
Thanks,
Richard
01-06-2014 08:10 AM - edited 01-06-2014 08:49 AM
Thank you. I'm subscribed now and look forward to seeing a fix come through.
01-06-2014 08:46 AM
Hello,
This issue is now resolved and an updated SDK is available from GitHub: https://github.com/AuthorizeNet/sdk-java/
Richard
04-02-2014 06:51 AM
Thank you !!!
07-13-2014 04:28 AM
Thanks for fixing the issue, but why does the Authorize.NET SDK page still have the buggy JAVA code?
http://developer.authorize.net/api/transaction_details/
10-24-2014 11:53 AM
Hell @pahcal123
I'm sorry to hear you're having issues with our SDKs. You are more than welcome to submit an issue on GitHub and our development team will look into them.
Richard
10-24-2014 02:02 PM