Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

e-commerce in java(My Baptism of fire)

I am working on a JEE6 project for some client, he asked me to create a very simple e-commerce shop. I am not very familiar with money transfers online, I want to allow the customers to be able to transfer funds to my bank account (direct bankwire) before I mail to them the product they purchased (Classic e-shop). I don't understand much about how payment gateways or checkout systems work. I was wondering if someone could give me some tips of what would I need to know to get started in the world of e-commerce? Also I will be very happy if I could clear some of the doubts I have on my mind:

  • I do my programming in JEE6, do I need any API for to be able to do bank transfers?

  • Do I need third party software and if so could you recommend me one of those softwares?

  • How do third party software for e-payments often works?

  • Is the process of integration of thirt party payment software in a JEE6 application complicated?

  • I use glassfish V3.0 app server. Are there any limitations in it in what e-payments concerns.

I apology if some of the doubts sound kind of weird or not related to the topic, but as I said I am unexperienced in the e-commerce topic and I feel kind of lost.

I'll appreciate some help.

like image 233
javing Avatar asked Nov 05 '22 01:11

javing


1 Answers

To get started, why not have a look at Paypal, Realex, and HSBC. Although there are many, many more...

I've used all three of the above, and they were all fine. I preferred Realex (good documentation and service) but it will depend on your location and circumstances.

Answers to those questions:

  • I do my programming in JEE6, do I need any API to do bank transfers?

The payment gateways will provide a web service that you will call.

  • Do I need third party software and if so could you recommend me one of those softwares?

No, just reference the web service. I'd recommend any of the three I listed above.

  • How do third party software for e-payments often works?

It depends on the provider. Typically, you send the order and card details over https and the provider will take care of processing the payment. The payment web service will return a status response. Some payment providers also validate card numbers and addresses.

  • Is the process of integration of thirt party payment software in a JEE6 application complicated?

Not if you have any web service experience. Integration should be straight-forward. Good documentation from the provider will help. Check out the documentation they supply before choosing your provider.

  • I use glassfish V3.0 app server. Are there any limitations in it in what e-payments concerns.

No, I don't think so.

like image 143
Joe Ratzer Avatar answered Nov 12 '22 10:11

Joe Ratzer