Direct Payment Integrator V6 - Online Help
Direct Payment Integrator V6
Questions / Feedback?

Activate Method

Activates a merchant account on the Datawire VXN.

Syntax

fdmsregister.activate([callback])

Callback

The 'callback' parameter specifies a function which will be called when the operation completes (or an error is encountered). If the 'callback' parameter is not specified, then the method will block and will not return until the operation completes (or an error is encountered).

The callback for this method is defined as:

function(err){ }

'err' is the error that occurred. If there was no error, then 'err' is 'null'.

'err' has 2 properties which hold detailed information:

err.code
err.message

Remarks

After you have successfully registered, you will still not be able to send transactions using the Datawire VXN until you activate your account. For the security reasons, a merchant is required to activate within a limited time period after receiving a successful registration response. Otherwise, the Datawire VXN will deactivate the account and you will need to restart the registration process again.

North, Nashville, and Omaha:

For example:


  FDMSRegister.MerchantNumber = "000000999990"  FDMSRegister.MerchantTerminalNumber = "555555"  FDMSRegister.TransactionNumber = "1" 'any unique number will do.
  FDMSRegister.URL = "https://stagingsupport.datawire.net/staging_expresso/SRS.do"
  FDMSRegister.Register() 
  FDMSRegister.TransactionNumber = FDMSRegister.TransactionNumber + 1
  FDMSRegister.Activate()
  FDMSRegister.ServiceDiscovery(FDMSRegister.PrimaryDiscoveryURL)
  For i = 0 To FDMSRegister.ServiceProvidersCount - 1
    FDMSRegister.Ping(FDMSRegister.ServiceProviders[i])
    Debug.Print(FDMSRegister.ServiceProviders[i] & " = " & FDMSRegister.PingResponseTime)
  Next

Rapid Connect:

For example:


  FDMSRegister.MerchantNumber = "000000999990"  FDMSRegister.MerchantTerminalNumber = "555555"  FDMSRegister.Config("GroupId=10001")
  FDMSRegister.TransactionNumber = "1" 'any unique number will do.
  FDMSRegister.ServiceDiscovery("https://prod.dw.us.fdcnet.biz/sd/srsxml.rc")  
  FDMSRegister.ApplicationId = "RAPIDCONNECTSRS"
  FDMSRegister.TransactionNumber = FDMSRegister.TransactionNumber + 1
  FDMSRegister.Register() 
  FDMSRegister.TransactionNumber = FDMSRegister.TransactionNumber + 1
  FDMSRegister.Activate()

 
 
Copyright (c) 2017 /n software inc. - All rights reserved.
Build 6.0.6240.0