Link to home
Start Free TrialLog in
Avatar of JRockFL
JRockFLFlag for United States of America

asked on

AIM/SIM E-commerce with Authorize.net

My client has a web site that uses the Dansie shopping cart and Authorize.net

Lately, he has had problems with people placing orders to test out credit card numbers. He was told that he should use AIM or SIM to solve this problem.

What is AIM or SIM?
Will this help?
What can I do to help him?

ASKER CERTIFIED SOLUTION
Avatar of coreybryant
coreybryant
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SIM=>Simple Integration Method
This takes help from Authorize.net's SSL enable payment forms (so that you may skip buying & configuring a SSL).

AIM=>Advance Integration Method
This uses technologies like CURL (if you are using PHP), to submit the transaction information to Authorize.net & display the returned response.
Here, you are asked to collect the credit card information from your customers & pass to Authorize.net. hence, this does ask for the presence of SSL.

Now, there is a fundamental difference while configuring the backend for these two different methods.
(A) SIM: It requires the presence of the (1) userid & (2) Transaction Key (which is collected from the Authorize.net control panel &  you need to provide the answer to the secret question). Based on these information, every transaction generates (of course, you need a ASP/PHP etc. script for that) a fingerprint, which is submitted along with the transaction information.

(B) AIM: It can work simply with the userid & password of Authorize.net merchant account.
Rest is taken care by a secured posting to the Authorize.net payment DLL.

Both has their plus & minus points...howevr, AIM is comparatively better, mainly because it allows you to maintain a better flow across the payment process.

Hope this info helps.
Thanks for reading thus far... :)

Regards
WC