How to implement payment gateway in Java Struts project?
I want to implement a payment gateway in a开发者_运维问答 Java Struts project. What are the steps for this?
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.
精彩评论