I want to implement a payment gateway in a Java Struts project. What are the steps for this?
+1
A:
The generic steps for using a payment gateway in your site are:
- Read the payment gateway reference documentation
- Take the example application(s) provided by the payment gateway (if any)
- Register, so that you obtain auth codes and be able to test
- Create a prototype, based on the examples
- Use the test environment of the payment gateway to check the correct working of your app
- Switch to the real payment gateway for production
If you want to create a payment gateway like PayPal or WorldPay - don't. Too much experience and people are behind these systems.
Bozho
2010-06-11 12:35:48
A:
Payment gateway and Struts are two different things. Payment gateway would largely depend how you want the site to proceed with payment information (sensitive information) and how you collaborate with other system. I will advice you to go for some 3rd party solution as they are well tested.
VinAy
2010-06-17 15:01:16