E-Payment Integrator 2020 Java Edition

Questions / Feedback?

ACHConverter Class

Properties   Methods   Events   Configuration Settings   Errors  

The ACHConverter class is used to convert ACH files into XML, for the purpose of easy viewing and editing. The class can also convert this XML back into the ACH format, so it may later be processed by the ACH network. Validation of these files occurs during the translation process.

Syntax

inpay.Achconverter

Remarks

This class is used for translating ACH files back and forth between the complex data format used by the ACH network and simple XML. By representing an ACH file as an XML structure, the viewing, parsing, and editing of individual ACH records can be easily accomplished. An XML document can be built from scratch and then use the ACHConverter class to convert it to ACH format.

The ConvertACH and ConvertXML methods are used to go back and forth between the ACH format and XML formats. ConvertACH converts from ACH to XML, and ConvertXML converts from XML back into ACH format. The data to be converted is specified by SetInputStream, InputFile or InputString, and the results are written to SetOutputStream, OutputFile or OutputString.

When the parsing is taking place, the source file is checked for validity in several different ways. The format and sequence of the records in the file is checked, as well as the data in each field in a record. Any formatting error or incorrect data (for instance, a character in an numeric-only field) will cause the validity checks to fail. In addition, the totals in each Batch Control Record and in the final File Control Record are checked against values computed as the class parses each record (this last check may be overridden by the VerifyMode property).

For example:

  ACHConverter1.InputFile = "c:\achtestfile.txt"
  ACHConverter1.OutputFile = "c:\xmltestfile.xml"
  ACHConverter1.VerifyMode = vmValidateTotals
  ACHConverter1.ConvertACH()

After the above code completes successfully, "c:\xmltestfile.xml" will contain the XML representation of the input ACH file. In addition, the following properties will be filled with information about the ACH file that was just parsed:

Note: The XML document created (and parsed) by this class is defined in the Schema property.

Property List


The following is the full list of the properties of the class with short descriptions. Click on the links for further details.

FileBatchCountTotal number of batches contained in the file.
FileBlockCountTotal number of blocks in a file.
FileCreditTotalTotal amount credited to the merchant's bank account.
FileDebitTotalTotal amount debited from the merchant's bank account.
FileEntryCountTotal number of entries in a file.
FileEntryHashHash of the routing numbers from each detail record in the file.
InputFileSpecifies the file to read data from when calling ConvertXML or ConvertACH .
InputStringData in memory to read from when calling ConvertXML or ConvertACH .
OutputFileSpecifies the file data is written to when calling ConvertXML or ConvertACH .
OutputStringContains the results from ConvertXML or ConvertACH .
SchemaReturns the XSD Schema used to create XML from ACH files.
VerifyModeDetermines how the totals in the Batch and File control records are validated.

Method List


The following is the full list of the methods of the class with short descriptions. Click on the links for further details.

ConfigSets or retrieves a configuration setting.
ConvertACHConverts a file from ACH format into XML.
ConvertXMLConverts an XML file into ACH format.
ResetReset the internal state of the class and all properties to their default values.
SetInputStreamThe input stream to read from when calling ConvertXML or ConvertACH .
SetOutputStreamThe output stream to write to when calling ConvertXML or ConvertACH .

Event List


The following is the full list of the events fired by the class with short descriptions. Click on the links for further details.

ErrorInformation about errors during data delivery.

Configuration Settings


The following is a list of configuration settings for the class with short descriptions. Click on the links for further details.

CloseStreamAfterConversionIf true, the class will close the output stream after conversion.
BuildInfoInformation about the product's build.
GUIAvailableTells the class whether or not a message loop is available for processing events.
LicenseInfoInformation about the current license.
UseDaemonThreadsWhether threads created by the class are daemon threads.
UseInternalSecurityAPITells the class whether or not to use the system security libraries or an internal implementation.

Copyright (c) 2021 /n software inc. - All rights reserved.
E-Payment Integrator 2020 Java Edition - Version 20.0 [Build 7941]