Posts

Showing posts from May, 2010

How To: Credit Card and ACH (e-check) integration with ASP.NET / C#

This is the seventh part in a series of postings on how to integrate credit card and ACH/E-check transactions into various systems. This installment demonstrates code used for processing payments (credit card and/or ACH) within a .NET / C# application. This was taken from the NELiX TransaX FleXport toolkit documentation. Credit card integration examples can be downloaded on the NELiX TransaX FleXport page. Assumptions: - Using NELiX TransaX Payment Gateway - Communicating using NELiX TransaX Webservice using System; using System.Data; using System.Configuration; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Web.UI.HtmlControls; public partial class _Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { } protected void ContinueButton_Click(object sender, ImageClickEventArgs e) { RoXAPI_WebService.RoXA

VB6 / Visual Basic 6 - credit card and ACH procecessing

I find myself working in VB6 very frequently lately. And, as we put out examples of integrating credit card and ACH processing on a variety of different platforms, it occurred to me that we've integrated these types of features into many VB6 applications lately. Visual Basic is a programming language that has been around for quite some time now, and is loved by many developers. Our FleXport library has examples in VBScript, VBA and VB.NET, but not VB6. Well, until now! We've recently updated our library to include a VB6 integration example. VB6 shines when low level communication is needed - for example, when you need to communicate with a piece of hardware directly, or hook into the windows api. VB6 is still a tool of choice for many developers in these scenarios, and many of these applications also have need for some type of credit card processing, or ACH / E-check processing component. With our examples (using the NELiX TransaX Gateway) it's easy! Visual Basic 6 Cre

How To: Integrate Credit Card and ACH (e-check) processing with Classic ASP

This is the fifth part in a series of postings on how to integrate credit card and ACH/E-check transactions into various systems. This installment demonstrates code used for processing payments (credit card and/or ACH) within a Classic ASP application. This was taken from the NELiX TransaX FleXport toolkit documentation. Credit card integration examples can be downloaded on the NELiX TransaX FleXport page. Assumptions: - Using NELiX TransaX Payment Gateway - Communicating using NELiX TransaX Webservice <% Function BuildXML() Dim vString vString = "" vString = vString & " " & request("TransactionType") & " " vString = vString & " " & request("GatewayUserName") & " " vString = vString & " " & request("GatewayPassword") & " " vString = vString & " " & Request.Servervariables("REMO
Credit Card / ACH processing integration example using PHP now available on my blog: http://ping.fm/8HLcT

How To: Credit Card and ACH (e-check) integration in PHP

This is the fourth part in a series of postings on how to integrate credit card and ACH/E-check transactions into various systems. This installment demonstrates code used for processing payments (credit card and/or ACH) within a PHP application. This was taken from the NELiX TransaX FleXport toolkit documentation. Credit card integration examples can be downloaded on the NELiX TransaX FleXport page. Assumptions: - Using NELiX TransaX Payment Gateway - Communicating using NELiX TransaX Webservice ini_set('display_errors', '1'); //load nusoap code require_once('nusoap.php'); //create client $soapclient = new nusoap_client('https://www.nelixtransax.com/roxapi/rox.asmx?WSDL','wsdl'); //gather parameters $params['TransactionType'] = $_POST['TransactionType']; $params['GatewayUserName'] = $_POST['GatewayUserName']; $params['GatewayPassword'] = $_POST['GatewayPassword']; $params[&

How To: Credit Card/ACH Integration with ASP.NET / VB.NET

This is the third in a series of postings on how to integrate credit card and ACH/E-check transactions into various systems. This installment demonstrates code used for processing payments (credit card and/or ACH) within a VB.NET application. This was taken from the NELiX TransaX FleXport toolkit documentation. Credit card integration examples can be downloaded on the NELiX TransaX FleXport page. Assumptions: - Using NELiX TransaX Payment Gateway - Communicating using NELiX TransaX Webservice Partial Public Class GatewayAPI_Demo Inherits System.Web.UI.Page Public connStr, vSQL, vID, vMode, vMSG Protected Sub ContinueButton_Click(ByVal sender As Object, ByVal e As System.Web.UI.ImageClickEventArgs) _ Handles ContinueButton.Click Dim ws As New RoXAPI.RoXAPI Dim wsParams As New RoXAPI.Params Dim wsResponse As New RoXAPI.Responses wsParams.TransactionType = Me.TransactionType.SelectedValue wsParams.GatewayUserName = Me.Gateway