Link to home
Start Free TrialLog in
Avatar of gsergiu
gsergiu

asked on

Online payment using credit cards.


  I want to implement an online payment with Visa and MasterCard by using JSPs. I need to know how can a change information with the bank?
  I'll be glad to receive some examples if is posible.
ASKER CERTIFIED SOLUTION
Avatar of msterjev
msterjev

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
Avatar of girionis
 Hello gsergiu, as msterjev pointed out you do not have to do it from scratch, there is no need to re-invent the wheel. There are already APIs out there that do this for you. You just install them and communicate with them (you send the data to them), the rest is up to the APIs to do the job (procees cc details, authorization, communicate with the bank, settle requests, refund, etc).

  Reading the SET specification is a good idea to get a touch of how things work. I have done something similar in the past and it is not very difficult. The API we used was the SecureTrading's one, if you would like you can have a look here: http://www.securetrading.com/ it is java based and it expects data in XML format. It is not free though, not sure if there are any free ones out there.

  But any implementation would do as long as they follow the standards.