NATS4 Global DPS

From TMM Wiki
Revision as of 17:11, 16 May 2011 by TMMStephenY (talk | contribs)
Jump to navigationJump to search
NATS 4
Members Admin
The Members Admin
View Member Details
Add Member
MySQL Auth
Mod Authn DB
Multisite Access
Member Logging
Member Password Retrieval
OpenID Connect
Mod Auth OpenIDC
ID Numbers
    Biller Instructions
NATS4 Biller List
2000Charge
2000Charge Gateway
2KCHARGE
A1Payments
Aebill
Aconti
Allopass
AltoBilling
Argus
Authorize.net
Bill1st Gateway
BillAPay Gateway
Billing Revolution
Billing United
Bit-Pay
BoaCompra
Braintree Payments
C2Bill
CardFlex
CCBill
CCBill Flexform
CCBill Web900
CashSend
CashtoCode
Centili
Centrobill
Clearcard
Clearcard IDV
Click and Buy
CoinGate
CoinPayments
CommerceGate
CurePay
DHD
DHDGateway
DIMOCO
EGatePay
ElectraCash
eMerchantPay Gateway
eMPPay.com
Epoch
Escalion
EuroBill
EPGBill.com
Ezic, Inc.
Focal Payments
FXBilling
FXBilling Native
Gateway tokens
Gigadat
Global Access
GlobalCharge
Global DPS
GoCoin
Greta 11 (G11Bill)
GTBill
GTBill GATEWAY
GXBill
ICN Ltd.
Itelebill
Jettis International
Jettis International Gateway
LocalBilling
MobiusPay
MerlinBill
NETbilling
NETbilling Native
NetCash
NetMobile
Netpay International
NoCreditCard
OrbitalPay
Password By Phone
Pay4
Pay900
Payment Network
Paygarden
Paygea
PayPal
Paysite Cash
Payspace
Payspace Gateway
Plug'n Pay
Prime Orange
Probiller
PumaPay
Rocketfuel
RocketGate
RocketGate Native
RSBilling
RSBilling Native
SafeCharge
SafeCharge Native
Secure Billing Worldwide
Secure Billing Worldwide Gateway
Secure Trading
SecurionPay
SegPay
SegPay Gateway
SOFORTdauerauftrag
Sonic Bill
StandardBill
TrustCharge
Telecom
UKash
Vendo Services
Vendo
Verotel Pro
Voxtel
VXSBill
WebBilling
Wispay
WTS
WTSeu
Zombaio
Shopping Cart Sales
Switching From Epoch to Epoch EU

Setting Up Global DPS

Before you can begin setting up Global DPS as a biller in NATS, you must first register for an account with Global DPS. To do so, use the information provided by their website to contact them: http://www.globaldps.com/contact.jsp

When setting up your account, make sure you record information that is necessary for setup in NATS. This includes:

  • Username
  • Password
  • Transaction File Prefix
  • Program Desc

FTP Access

In order to use this biller, you must also set up a FTP account that has access to your ../nats/work directory. To do so, tell your Global DPS contact to send your transaction and cancellation files to the work directory using FTP.

Setting Up Global DPS in NATS

Billers Admin

To begin setting up Global DPS as a biller in NATS4, go to the Billers Admin. Select "Global DPS" from the Setup New Biller drop-down menu, and click Add.

When prompted, fill in the available fields with the necessary information. This includes your Username, Password, and Transaction File Prefix-- this information must be obtained directly from Global DPS. After you have filled out the available fields, click Save.

After you have done this, add Global DPS to a cascade of your choosing. For more information on cascades, please see our NATS4 Cascade wiki article.

Sites Admin

To continue setting up Global DPS in NATS, navigate to the Sites Admin. In the Sites Admin, create a new tour or edit a currently existing tour to use Global DPS to process transactions.

On the next page, scroll down to the "Join Options for this Tour" section, and click the "Edit Global Option Details" action icon for the join options you want this biller to be configured for.

Under "Biller Codes", locate the field for GLOBALDPS and fill in the "Program Desc" value that you received when setting up with Global DPS. This information must be obtained directly from your biller.

Templates

In order to use Global DPS with NATS4, you must also edit the gateway_join_check template for each site you want Global DPS to apply to.

Go to the Sites Admin and click the "Edit Site Templates" action icon for the site you wish to edit. On the next page, click the Customize action icon for your gateway_join_check template.

In this template, you will need to add a few variables. These variables are:

  • signup[phone:1]
  • signup[bank_city:1]
  • signup[bank_state:1]

To add the phone variable, insert the following example code:

<TR><TD class="join_name">Phone Number:</TD><TD class="join_value"><input type="text" id=phone name="signup[phone:1]" value="{$vars.phone|default:$mdata.phone}" size=20>
{if $errors.phone}<span class="join_error">{$errors.phone}</span>{/if}</TD></TR>

To add the bank_city variable, insert the following example code:

<TR><TD class="join_name">Bank City:</TD><TD class="join_value"><input type="text" name="signup[bank_city:1]" value="{$vars.bank_city}" size=20>
{if $errors.bank_city}<span class="join_error">{$errors.bank_city}</span>{/if}</TD></TR>

To add the bank_state variable, insert the following example code:

<TR><TD class="join_name">Bank State:</TD><TD class="join_value"><input type="text" name="signup[bank_state:1]" value="{$vars.bank_state}" size=20>
{if $errors.bank_state}<span class="join_error">{$errors.bank_state}</span>{/if}</TD></TR>
  • Note: The bank_state variable must be two characters (i.e., NJ, NY, CA). If it is any shorter or longer, your transaction will be denied by Global DPS.