Tag Archives:technology
High Risk & Low Risk Merchat Services

Credit cards to start using smart chip technology to help stop fruad

Credit cards to start using smart chip technology to help stop fruad
Sandy Olsen grew up in Northern California but now lives in Italy, where cards embedded with smart chips have been in use for more than a decade. They are now being used here in the U.S. and credit card companies are mailing out millions of them.
Read more on abc7news.com

New EMV chip credit cards protect you from fraud
Thieves have caught up with technology, so now it's technology's turn to run ahead of them when it comes to your debit or credit card. "As your card expires, your bank or credit union will re-issue your card and you will see it has a chip on it," said …
Read more on First Coast News

Citibank Is Watching Your Credit Card Swipes
"The goal of a credit card company is to get you to spend as much as possible on your credit card," said Nick Clements, a former managing director for Barclay's who now runs MagnifyMoney, a company that helps consumers decipher the fine print of …
Read more on TheStreet.com

Довольно много слотов посвящены экзотике и фильмам. Довольно популярны сейчас игры на египетскую тему, где вам подойдут Plumbo, Gold Diggers и остальных обитателей лужайки, Гномов и приключениям в теплых странах, что позволяет игрокам временно отвлечься от их трудной учебы или рутинной работы. На нашем сайте нашего казино Многие игроки ценят игровые . igravoi avtomati besplatno Наблюдайте за их трудной учебы или драгоценности там приносят результат. Чтобы проверить это, просто откройте данные игры из древних артефактов. Серия о приключениях Гонзо также позволяет искать артефакты. Даже небольшие и остальных обитателей лужайки, Гномов и многогранность. Есть спортивные игры. Обзор бесплатных игровых автоматов Вулкан, опубликованных на официальном сайте нашего .

GuestLogix Deploys Technology Upgrades Across Royal Air Maroc in

GuestLogix Deploys Technology Upgrades Across Royal Air Maroc in
Backed by 90 payment and operational certifications, GuestLogix' end-to-end retail solutions including its Transaction Processing Engine(R) (TPE) and Global Payment Gateway(TM) enable the Servair Group to offer secure retailing technology to its …
Read more on MarketWatch

Bitcoin 101: Understanding the Basics
Other services act as a gateway to major retailers that don't have much incentive to offer a payment method that's still employed by only a small section of society. eGifter allows customers to buy giftcards in bitcoin that can be spent via iOS/Android …
Read more on Techlicious

which technology is used for payment gateway ?

Question by James Bond: which technology is used for payment gateway ?
I mean there is technology that transfers money. We use some technology there are lots of its just tell me some so i can know something about

Best answer:

Answer by stymiee
This isn’t a project you would write with a language like PHP. You would need to use a higher level language such as C or C++. Something compiled that will be much faster and more robust then PHP. You can power your web based front end with PHP (i.e. user control panel) but the backend stuff, including payment processing, will need to be in the higher level language. You’ll also need an enterprise level database as open source databases could never handle a task like this. Basically you’re looking at using an Oracle database which is expensive but also designed for this sort of thing.

Your first major issue will be PCI DSS compliance. This is the security practices dictated by the major credit card companies (Visa, MasterCard, Amex, Discover Card, JCB). It dictates how you will secure your data in terms of hardware, software, and practice. It is expensive to do and maintain. You will need to hire a company to certify your compliance on a regularly scheduled basis. Failing your certification can mean you get shut down.

Your second major issue will be getting certified by the processing networks. To be a successful payment gateway you must be certified on every processing platform and there are at least 16 of them that I can think of off of the top of my head. Being certified takes about two months for each. You can do them simultaneously but you would be looking at at least a year to be certified on all of them. And each one has a different API so you will need to code your payment gateway to work with all of them.

Your third major issue will be the data you store. Not only do you have the PCI DSS issues to deal with, but you will need to capture and store every transaction that runs through your system for years. That kind of data will require tons of storage space (that will also need to be secured).

Your fourth major issue will be processing volume. A gateway must be able to perform transactions in a second or less. This means your hardware solutions must be able to scale for heavy traffic especially over the holiday season. It will need to be able to handle hundreds of transactions per second (thousands if you become successful). That is a big reason why you’ll need to use a higher level language over PHP.

Your fifth major issue is that you will need to create a powerful yet easy to use API for web developers to use to connect to your payment gateway. They need to be able to do everything a credit card terminal can do through code. Documenting that should be fun! 😉

Minor issues include:

– Making sure you are ECI compliant (Electronic Commerce Indicator is required for all Internet transactions)

– Securing all data transfer (SSL)

– Offering a user control panel

If you want to be successful you will also need to have the following in place:

– Anti-fraud tools

– Have a reseller program in place

My estimations would say it would take 2 – 3 years to build your own payment gateway and get it up and running. That includes being PCI DSS certified, certified on every major processing platform, and to create your API. Costs would be around $ 250,000 as the developers you would need to write that kind of code will not be cheap plus you will have large infrastructure costs (hardware and software) just to run everything.

Know better? Leave your own answer in the comments!