• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Tim Cooke
  • Campbell Ritchie
  • paul wheaton
  • Ron McLeod
  • Devaka Cooray
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
  • Paul Clapham
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Piet Souris
Bartenders:

java payment gateway library

 
Ranch Hand
Posts: 510
Google Web Toolkit Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I'm looking for a java payment gateway library. strangely i couldn't find any java payment gateway framework which is very strange.
does any one knows of such library or framework i can use in my project?
thanks
 
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
What do you mean by "payment gateway" - a payment processor? If so, then an Internet search for that term will find many such companies. There's no standard API for payment processing, so each company has their own API; you should be able to find the details on the companies' respective web sites.
 
Yahya Elyasse
Ranch Hand
Posts: 510
Google Web Toolkit Eclipse IDE Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Ulf Dittmer wrote:What do you mean by "payment gateway" - a payment processor? If so, then an Internet search for that term will find many such companies. There's no standard API for payment processing, so each company has their own API; you should be able to find the details on the companies' respective web sites.


No i mean an extensible java framework to enable integrating many payment gateways into a single java payment framework.
sorry if i didn't explained well.
I mean a java framework that we can plug any payment gateway like paypal & authorize.net ect..but the java core framework take care of processing payment depending on selected/active gateway
any library such that?
 
Ulf Dittmer
Rancher
Posts: 43081
77
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
No, I don't think such a library exists.
 
Ranch Hand
Posts: 46
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I've created paypal library (not finished yet though), you can look at it at
http://paypal-nvp.sourceforge.net/index.htm
I don't think it's a good idea to put everything together under one library (there are many payment gateways for many countries).
 
Ranch Hand
Posts: 65
  • Likes 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
J2Pay is an open source gateway payment processing library for Java that provides a simple and generic API for many gateways. It reduces developers' efforts when writing individual code for each gateway.
reply
    Bookmark Topic Watch Topic
  • New Topic