Hi,
We have recently moved to prod and after success AUTH only using SIM and when we tried to do AIM with prior auth capture it is giving RRC_0_0.
We are stuck up here, can some body help ASAP.
Merchant merchant = Merchant.createMerchant( Environment.PRODUCTION, apiLoginID,
transactionKey);
// PRIOR AUTH CAPTURE
Transaction authCaptureTransaction = merchant.createAIMTransaction(TransactionType.PRIOR_AUTH_CAPTURE, amount);
authCaptureTransaction.setTransactionId(transactionId);
Result<Transaction> result = (Result<Transaction>) merchant.postTransaction(authCaptureTransaction);
When I try to run from my local it is working perfectly.
Thanks,
Chandra
10-15-2014 03:59 PM
When you run on local, it is using the production account?
Sound like is is not getting result, url is wrong(or getting block), or it not in the right format(e.g. it a card present account)
10-15-2014 04:32 PM - edited 10-15-2014 04:33 PM
Yes, In local when I tried to use production account, it was successful.
And I am using SIM for AUTH ONLY which was successful, and PRIOR_AUTH_CAPTURE using AIM which is giving RRC_0_0. (IN PRODUCTION)
Thanks,
Chandra
10-15-2014 04:38 PM
If the production account work on your local. and the code is the same as production server. then
Have you check the url? maybe it getting block? SIM and AIM do use different URL.
10-15-2014 04:46 PM