TimmaLabs / NetsExample

Windows integration for Nets (Viking) payment terminals (iCT250, iPP350)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Commitizen friendly

NetsExample

Run your web-based POS application on a fully compliant ES6 environment based on the Chromium web browser engine with access to OS resources: JavaScript → .NET (CEFSharp & CEF) → Baxi.NET → Payment terminal

Development

  1. Install the required USB drivers for terminal communication: IngenicoUSBDrivers_2.80_setup.exe

  2. Install the required Visual C++ runtime components (both x86 and x64 architectures if you're running Windows 10) and WiX Toolset (http://wixtoolset.org/releases)

  3. Download & install the Windows 10 SDK: https://go.microsoft.com/fwlink/?LinkID=698771. Make sure MSBuild is included in the installation (or install it separately). Modify its path if necessary (see build.bat)

  4. Optional: if you're developing inside a VM, expose USB from the host machine to your VM (Devices -> USB -> Sagem)

  5. Optional: download Microsoft Expression Design 4 for converting vector art (e.g. .ai) into XAML

  6. Run npm install (make sure you have Node.js installed and available in your %PATH%)

  7. Launch the application:

    • run npm start to start example web application
    • open the solution (app/NetsExample.sln) in Visual Studio (or alike) and run it.

If Visual Studio complains about a missing BBS (Baxi API) reference when you try building/running the application, do the following:

  1. Right-click on the NetsExample project
  2. Add -> Reference...
  3. Select ..Baxi.net_1.4.2.1\baxi.net45\baxi_dotnet.dll

When running in Debug mode, a browser console will be opened alongside the application to allow interactive debugging/inspection of the application. See example/README.md for usage examples.

The solution consist of 3 projects: the application (NetsExample) and two installer projects (setup and bundle). setup packages the installer (.msi) for the application whereas bundle includes the application installer together with its dependencies (USB driver and .NET 4.5.2). Run npm run for an overview of all the available scripts for building & signing the application (e.g. npm run build:release will build a release version of the application under ./bin)

Build Macros

The following build variables can be used to customize the build (see build.bat):

  • PRODUCTION: flag to use for production builds, enabled by default
  • LOCALHOST: flag to indicate whether or not to open the development version of the web application (hosted locally/on development server), enabled for debug builds
  • DEBUG: flag to use for debug focused logic, enabled for debug builds

Tips for Versioning

The version format is major.minor.patch.revision. The general revisioning principles are as follows:

  • Breaking changes: bump major
  • New features (backwards compatible): bump minor (increment by the number of new features)
  • Bug fixes/refactoring: bump patch
  • Stylistic changes, docs, build: bump revision

In .NET lingo, patch is often referred to as the build version.

If the release includes changes, start with incrementing the respective version numbers (major/minor/patch/revision):

  1. Assembly version: right-click on NetsExample project -> Properties -> Application -> Assembly Information... -> Assembly Version and File Version (can be identical, see http://stackoverflow.com/a/65062 for more information)
  2. Installer (Setup.wxs and Bundle.wxs) versions (see code comments & https://www.firegiant.com/wix/tutorial/upgrades-and-modularization/ for reference)
  3. package.json version

FAQ

What to do if the test payment terminal rejects all/some of the test cards?

Perform reconciliation for each Nets account configured on the terminal. If that doesn't help, try fetching the latest dataset (Fetch cards).

What to do if terminal connection can not be established?

Confirm that the USB driver was successfully installed. Open Device Manager and upon connecting the payment terminal via USB you should see Sagem Telium appear under Ports (COM & LPT). Also, confirm that Force COM port is enabled and set to the appropriate value (COM9)

About

Windows integration for Nets (Viking) payment terminals (iCT250, iPP350)

License:Apache License 2.0


Languages

Language:C# 63.1%Language:HTML 14.9%Language:JavaScript 12.9%Language:CSS 5.3%Language:Batchfile 3.8%