This class provides Credit Card processing against the
MerchantPlus Navigate Gateway. This service uses plain POST operations against the Web Server so other than providing URL and login information there are no further setup requirements. This service is compatible with Authorize.NET and uses the same processing logic.
What do you need:
- Navigate Gateway URL
- NaviGate Merchant Login ID and Password
- Configure the delimiter in the Navigate Gateway Configuration Administration to use a comma (,) or |.
- Referring URL
- No further installation required - uses plain POST interface to server gateway
For information merchant processing and requirements see Credit Card Processing. Find out more about rates and signup with Navigate and MerchantPlus.
Custom Properties you need to set
To configure Navigate for your account you pass the MerchantId and MerchantPassword properties.
CC = new ccNavigate();
CC.HttpLink = "https://gateway.merchantplus.com/cgi-bin/PAWebClient.cgi ";
CC.MerchantId = "yourMerchantId";
CC.MerchantPassword = "yourTransactionKey";
CC.ValidateCard()
System.Object
Westwind.WebStore.ccProcessing
Westwind.WebStore.ccAuthorizeNet
Westwind.WebStore.ccNavigate
public class ccNavigate : ccAuthorizeNet
Class Members
| Member | Description |
|---|
 |
ValidateCard |
Processes the transaction against the Navigate gateway. public bool ValidateCard() |
Requirements
Namespace: Westwind.WebStore
Assembly: westwind.webstore.business.dll
See also:
Using the Credit Card Processing Classes |
Class ccProcessing