Table of Contents
After you’ve implemented and tested your payment connector in the development environment, you must create an installer to transfer the payment connector to a retailer IT professional or a value-added reseller (VAR) for production deployment. For more information, see Implement a payment connector and a payment device.
Windows Installer
Microsoft Windows Installer (MSI) is the application and configuration service for Microsoft Windows. You must create an installer that contains all the files that are required in order to deploy a payment connector. The installer itself doesn’t deploy the payment connector. It just unzips and copies the connector files to a designated folder. The next section of this topic defines the contents of that folder.
You can configure the installer to require that customers accept a user agreement before they can continue with the installation.
You can also choose your preferred format for the installer. For example, you can have an .exe file.
Installer contents
The installer must install the required files in the following structure:
- Payment Connector – This folder contains up to three subfolders:
- IPaymentDevice Assemblies – This folder contains the assembly that implements the IPaymentDevice interface and its dependent assemblies. These assemblies are used in Hardware station and Retail Modern POS to communicate with payment terminal devices, such as VeriFone MX925. If you don’t support a payment terminal device, you can omit this folder.
- IPaymentProcessor Assemblies – This folder contains the assembly that implements the IPaymentProcesor interface and its dependent assemblies.
- Payment Web Files – This folder contains the callback HTML/JavaScript/CSS files that Microsoft Dynamics AX requires in order to enable the payment accepting page. If the payment accepting web app follows the Microsoft implementation guide, these payment web files aren’t required, and you can omit this folder. In some cases, the payment accepting page requires that a callback page be deployed to the host application server. In that case, you must include a folder for the callback page:
- <Payment_Connector_Name> – To avoid file conflicts from different payment connectors, the payment web files must be placed inside subfolders. We recommend that you use the connector name as the name of the subfolder.
- Other utility tools – If you have other utility tools, such as a configuration utility for a payment terminal device, you can include them here. If you don’t support any payment terminal devices, you can omit these files. The utility tool should be designed to interact only with the payment terminal devices. It should not interact with anything in Hardware station or Modern POS. Hardware station and Modern POS will be packaged together with files from the Payment Connector folder.
- README.txt – This file describes the contents of the folder and how to use any utilities that are included. The file must also include the payment page URLs that are required in the Cloud POS web.config and Modern POS package.appxmanifest files. If you support any payment terminal devices, the file must also mention the name of the assembly that implements the IPaymentDevice interface. The assembly will be registered in the Hardware Station .config file.
The following illustration shows the file structure for a connector that is named TestConnector.
转载请注明:ww12345678 的部落格 | AX Helper » Create a Windows installer for a payment connector