Designing,and,Building,Payment ecommerce Designing and Building Payment Applications


I will be answering three main questions in this Emerald Passport Review for all of the tenacious Entrepreneurs that are seeking the ideal Home Based Business Opportunity. Internet Marketing has seen some tremendous growth in the "work at ho Wood handles are used in tools due to their ability to provide a good grip when holding the tool. Unlike many other types of handles; wooded handles are easy to grip do not transfer heat and are not an electrical conductor. Therefore, making


DESIGNING AND BUILDING PAYMENT APPLICATIONSBy Robert Levings, President, EasyPay123Unless you are using an off-the-shelf shopping cart application, chances are that you or your developer will be customizing at least some element of your payment application to meet your specific needs. Your payment application may be simple or it may be complex; either way, following the right sequence of events and taking advantage of available technology will help increase customer satisfaction; reduce development costs, payment-related errors and time to market; and provide you with a more functional application.The following article highlights the key steps involved in designing, building and launching payment applications. While it is written from a developer’s perspective, it will equip the merchant with information that you can use to when you are interacting with your developer throughout the process. It is part of a series of articles offered by EasyPay123 to help merchants understand the many facets of processing credit card payments.Step 1: Understand User NeedsUnderstanding user needs is a necessary starting point for the development of any payment application. Documenting how the user will interact with the application and all of its various features ensures that all parties can agree on what the final product will look like and how it will operate. Some of the questions that must be answered at this stage include:* How will payments be accepted (online, phone-in, IVR, etc.)?* What customer data is to be captured (e.g. name, phone #, address info, etc.)?* What supplemental data will be captured (e.g. demographics, questionnaire, etc.)?* Which data fields should be made “required” on the interface?* What error detection/correction or data validation scripts will be used (e.g. MOD10 credit card number validation, date/dollar format, etc.)?* Do any calculations need to be made on the interface?* What will the look and feel of the interface be (graphics, text, colors and layout)?* Will access to the application be restricted by IP address or username/password?* Will the results of the transactions update a database in real-time or be made accessible to a third party application/data-base at some point after the transactions take place?* How will the credit card data be input (keyed, swiped, touch screen, etc.)?* What content should be put on the response/receipt page?* How will the customer/merchant receive an email receipt (if desired)?* What will the contents of the emailed receipt be?* What bank(s) will be used for merchant accounts?* Where will the application be hosted?* How will the payment form be secured?The answers to these questions should be captured in a specification document so that the merchant can review and comment. This step will reduce development time and cost, and also increase merchant satisfaction with the project. Step 2: Design the InterfaceDesigning the user interface is always “part art/part technology” and will vary greatly depending upon the application. It should be driven primarily from the user needs defined above. In addition, technical considerations, such as the target operating system, hosting environment and development language must be taken into account. These decisions are the “meat and potatoes” of most developers’ business, so little discussion is necessary here. An interface mock-up is useful so that users can provide input and test out the application (some payment gateways provide developer environments so that a transaction can be accurately simulated with the application prior to “going live”).You may want to include any number of scripts in the interface to reduce errors and improve its functionality. Some that you may find useful include:(a) MOD10 Check: Uses the Luhn algorithm to determine whether the credit card number is valid or not. Reduces transaction time. Could reduce merchant cost if gateway charges for failed credit card numbers.(b) Order Number Generator: Generates a unique numeric order number that can be posted with each transaction. With the “reject duplicate order number” option turned on (if supported), it nearly eliminates the risk of duplicate transactions being processed by the gateway.(c) Required Fields: Disables the ability to submit a transaction unless all required fields are completed on the order form. Ensures all necessary / desired data is posted to the payment gateway.(d) Double Submit Prevention: Disables the ability for the user to click the “Submit” button again while a transaction is still processing. Reduces the risk of an erroneous double submission of an order.(e) Email Validation: Ensures that an email address is in the format [email protected]. Reduces the risk of incorrect emails being entered.(f) Complete If Left Empty: Automatically populated a specific data field if the user chooses to leave it empty (e.g. inserting “not specified” into the address field).Ensures that fields that are required by the gateway are populated with an acceptable value.(g) Alpha / Alpha- Numeric / Numeric Only: Issues an error message if the user enters the wrong data format. Reduces the risk of data entry errors. (h) All Caps / Lower Case: Issues an error message if the user enters the wrong data format. Reduces the risk of data entry errors. Step 3: Integrate to the Payment GatewayIntegrating the payment gateway to an application (such as a website or billing system) can vary greatly in terms of the complexity involved. In general, the following steps will apply: 1. Integration Method SelectionMost payment gateways have many integration methods depending on the type of interface sending the transaction, where that interface is hosted (i.e. operating system) and how complex the integration is. For example, some implementations may use a simple form post to the payment gateway, whereas more complex ones may require the use of an API. Mapping out the data flows and system requirements for the application against the payment gateway integration methods will help determine the appropriate method. Generally speaking, use of an API provided by the gateway provides the most flexibility, but can be more complicated to integrate and maintain.2. Data Field Posting ConfigurationIn this step, you should ensure that you are passing all of the required and optional fields from the interface to the gateway using the correct syntax. Required fields are the minimum ones necessary to complete the transaction. Optional fields contain useful supplementary data. They must be posted to the gateway using the syntax dictated by your gateway provider. 3. Response File InterpretationOnce the fields are posted, testing must be done on the response mechanism(s) to ensure that they correctly interpret all possible response outcomes from the payment gateway (e.g. approvals, declines, system errors, etc.). This involves simulating the various outcomes and making sure that the correct response values are mapped to the variables, and that everything displays properly in the response pages and email templates (if available).In some cases, the payment gateway may actually display the variable name that has been used for a specific data field in the response page (e.g. if you use “CustName” as the variable, this may be what is displayed to the user in the response page, email, etc.). Wherever possible, try to use “customer-friendly” variable names rather than cryptic ones to avoid confusion on the part of the user.4. Fail Safe DevelopmentPut fail-safes in place to compensate for internet connectivity failures that might result in the customer not getting a payment response from the gateway. This involves working through the logic of how a customer processes a transaction and receives notification of the transaction to identify possible points of failure (e.g. what would happen if Internet connectivity failure occurred immediately after a customer posted a transaction to the payment gateway but before the response page was returned? How does the customer know what the status of the transaction is?).Fail-safes can take many forms. EasyPay123, for example, has a Get Transaction Status feature that allows the application to query Skipjack based on unique order number to determine (a) whether the transaction is in the system, and (b) if it, what its status is (e.g. approved, declined, settled, etc.). Once the status is known, the application can be programmed to determine the correct course of action to take automatically.5. Third Party LinkagesIn some instances, there may be a requirement to pass transaction data to a third party application, either at the time the data is posted to the payment gateway, or using the results returned from the payment gateway after the transaction is processed. There are a number of ways to do this, either by having the gateway post to a specific location, or by extracting and formatting the data for import into the third party application.Talk to your payment gateway provider to determine the best method of integrating to the application. Step 4: TestTesting can be accomplished during the development stage by using the payment gateway’s development environment (if one is available) and a test credit card. This allows the developer and the user to ensure that the application functions in the manner that it should. Development testing only provides assurance of the functional parts of the application, however. To ensure that funds are approved and settled properly, testing should also be performed with the application on the “live” platform before making it available for general use. We recommend the following:1. Using a live credit card, authorize a transaction in the amount of $1.002. Ensure that the transaction is successfully approved, and that:(a) The response page is displayed and contains all of the necessary information(b) The email receipt is received and contains all of the necessary information (if an email receipt is being used)3. After 24-48 hours (depending upon the merchant bank), check the merchant bank account to determine if the funds from the authorization were successfully deposited.4. Verify that the merchant name appearing on the live credit card statement used in Step 1 appears as expected (this is defined during the merchant account application process, and is typically a derivative of the “doing business as” name on the application).Step 5: CommunicateChances are that you built your payment application because it helped you streamline your operations, reduce your costs, increase your sales, improve customer service, or all of the above. If your customers/users are not aware that it exists, your success at achieving your objectives may be reduced. You will need to get the word out that your application exists. This could include advertising or leveraging search engines in the case of online retail, or a link to your payment interface in your emails and invoices in the case of bill payment applications. Many methods of communication exist, including advertising, affiliate programs, “viral marketing” efforts, search engine submissions, and others. The Internet is an excellent resource to research these various options. We also have an article, “Gaining Visibility for Your Website”, that highlights a few of these different methods. You should also use your offline marketing efforts and collateral material to make customers aware of your application.Don’t ignore your employees when sending out communications. They should be aware of the value and implications of the new payment application, since it may affect how they do their job or interact with customers. Sending an internal bulletin to them describing the application, its value, and how it may impact them, will go a long way toward avoiding confusion once the application launches. Design and Development Tips* Data validation and required field coding will dramatically reduce end-user generated errors and dissatisfaction by the end user.* Design and test for all browser types.* Test, test, test to ensure that all elements of the system are functioning properly. Mapping out the data flows and developing an exhaustive test protocol to follow will ensure that most issues will be identified and tested prior to launch.SummaryA complete discussion of how to integrate a payment gateway to an application is beyond the scope of this document. There are, however, basic steps that should be followed regardless of the nature of the integration. If you are a developer looking to integrate a payment gateway, your gateway provider should provide you with the documentation, scripts, software modules and support to make your task easier. If not, then you may wish to look at alternate gateway providers. If you are a merchant that is engaging a developer to do this work for you, you may find value in using the points in this article to ensure that your developer is following a comprehensive approach that will result in an error-free, customer-centric solution.About EasyPay123EasyPay123 is a leading supplier of payment processing solutions to businesses across North America. Offering world-class solutions at affordable prices, EasyPay123 helps merchants simplify the process of acquiring, launching and using payment applications to improve the way they do business. Visit us at www.EasyPay123.com. For a description of some of the e-commerce terms used in this article, please visit our online glossary at www.EasyPay123.com. If you found this article helpful, you may wish to request one or more of the other articles in the EasyPay123 series by visiting our website. Articles in this series include:Understanding E-commerce TransactionsHow Transactions are ProcessedGetting Merchant AccountsHow to Design and Build Payment ApplicationsHow to Choose a Payment GatewayHow to Pick a Shopping CartPreventing Online FraudGaining Visibility for Your WebsiteUnderstanding Wireless Payments© 2003 EasyPay123. All Rights Reserved. This article may not be copied, reprinted, published, translated, hosted, or otherwise distributed by any means without explicit written permission from EasyPay123.

Designing,and,Building,Payment

ecommerce

Is It Safe To Apply Perfumes On Clothes?

Perfume is one of the most used grooming products among generations of various age groups. We all use it every day religiously to smell good and feel good. However, when it comes to the best place to spray the perfume, we all fail to give th ...

ecommerce

9 Most Popular Online Flower Bouquet arrangements

Can you think of any special moment without the presence of a bunch of flowers? No! Flowers are the most pleasing elements that will enhance the quality of the event. It might be any flowers, but the presence of it will make some magic. Par ...

ecommerce

Five Things to Gift This Eid

Eid al-Fitr means celebrating the breaking of the fast. Muslims continue to fast for about a month daily and then break it on the day of Eid. People wear new clothes and celebrate it by exchanging gifts and going to each others homes taking ...

ecommerce

Tips to Make Your Guest Room Feel Like Home

Keep the decor in your guest room setup simple and tasteful. If you've got decorated your guest bedroom with a busy theme, covering every spare inch along with your taste in fabrics, textures, and knick-knacks, youll only remind your guest t ...

ecommerce

Web Catalogs and eCommerce – An Overview

As shopping moves online, it is not surprising that catalogs too have moved online. A web catalog works very much like a printed catalog or brochure in that it lists the various products on offer with details about products and pricing. L ...

ecommerce

How to maintain and clean tour motorcycle riding gear

Lets face it all you riding folks - riding gear is expensive. Most riders save over months to afford their favorite jackets, books or even gloves. In the world of riding gear, even economical is expensive. But unlike other things, the high c ...

ecommerce

5 Ideas to Start Online Fashion Store

Simplifying your online fashion store venture further, here are a few ideas that can help you create a functional, effective, long-lasting and beautiful ecommerce website of fashion clothes and accessories in no time. So, without wasting a ...

ecommerce

Sending Flowers Is Easier Now!

It's going to become a standard practice to present flowers, but it's always remained a gorgeous gesture that's accepted and appreciated. Now it's become very easy and convenient to send flowers onlineonline flower delivery in Kerala and Onl ...

ecommerce

How to convert your Magento2 Store into a Marketplace

Multi-vendor Marketplace permits the admin to uplift the revenue by commercialism the products of third party vendors at an equivalent platforms. Etsy, eBay etc, area unit among the most effective eCommerce stores, winning to keep their cus ...

ecommerce

Benefits of Panna Stone and rules for wearing it

You must have seen many people wearing emeralds in their hands. Have you never had the question that why do people wear emeralds? Is it worn only for fashion or does it really bring some benefits?Without delay, let me tell you that the eme ...

ecommerce

5 Best Western outfits for women in 2020

The gods have been smiling down on us fashionistas this year. 2020 has seen some kick assfashion revolutions from pajama suits to flowy trousers, celebrities ditching their LBD for morerelaxed and comfortable styles on the red carpet.Listed ...

ecommerce

Furniture Showroom | Furniture showroom in Madurai

We are one of the leading Furniture Manufacturers in South India. We have vast experience in the furniture industry. We have a variety of sofa like Wooden sofa, Fabric sofa, Rexin sofa, Leather sofa, Country wood, etc.Decorate your living r ...

ecommerce

10 Reasons your eCommerce website Need a blog

Obviously, more often than not, blogging is a reasonable substance showcasing apparatus for most organizations. They help to sparkle a light on center brand esteems, voice, and character while turning into a vital factor in SEO achievement. ...

ecommerce

Comparison of ERW Steel Pipe and Seamless Steel Pipe

1.Outer Diameter ToleranceERW steel pipe: Cold-formed and sizing by reducing the diameter by 0.6%. The outer diameter is controlled accurately and the fluctuation range is small, which is helpful to eliminate black leather buckles.Seamless s ...

ecommerce

Get the most elegant plus techno mens watches online

We are living in a generation where style statement is something that reflects our own, unique personality. As we all can see its not only womens fashion that tends to go mainstream. Instead, now being a man is also comes up with its styles, ...