VDAValidator Control
Properties Methods Events Config Settings Errors
VDAValidator is a lightweight EDI validation control designed for simple document validation.
Syntax
VDAValidator
Remarks
This component provides a simple way to validate an EDI document and obtain details about any validation errors.
EDI Validation
Before calling Validate set SchemaFormat and call LoadSchema to load the schema for the document to be validated. The schema defines many validation rules such as minimum and maximum lengths, minimum and maximum occurrences, and more. The validation performed by the control depends largely on the schema's definition.
When the Validate method is called the control will attempt to validate the document. If errors are found during validation the ValidationError event will fire with details about each error as it is encountered. After the document has been validated the ValidationErrors property will be populated with details of each error.
Inspect the ValidationErrors property for information on any errors that were encountered.
Validation Example
validator.InputFile = "files/EDIDocuments/MyEDIDoc.txt";
validator.LoadSchema("my_schemas/00501/RSSBus_005010X222A1_837.json");
validator.Validate();
foreach (ValidationErrorDetail error in validator.ValidationErrors) {
Console.WriteLine(error.ErrorCode + ": " + error.Message);
}
Property List
The following is the full list of the properties of the control with short descriptions. Click on the links for further details.
EDIStandardVersion | The version of the EDI specification. |
InputData | The data to parse. |
InputFile | The file to parse. |
SchemaFormat | The format of the schema file. |
ValidationErrorCount | The number of records in the ValidationError arrays. |
ValidationErrorColumn | The column number in the EDI document where the error occurred. |
ValidationErrorElementErrorCode | The error code which may be used in the IK403 property of a 999. |
ValidationErrorElementPosition | This property holds the position of the element where the error occurred. |
ValidationErrorErrorCode | The ErrorCode property contains the type of error encountered. |
ValidationErrorLine | The line number in the EDI document where the error occurred. |
ValidationErrorMessage | Message is a textual description of the error. |
ValidationErrorSegmentErrorCode | The error code which may be used in the IK304 property of a 999. |
ValidationErrorSegmentNumber | This property is the index of the segment where the error occurred. |
ValidationErrorSegmentTag | This property specifies the tag name of the segment where the error occurred. |
ValidationErrorTechnicalErrorCode | This property holds a technical error code that helps identify structural issues with the document. |
Method List
The following is the full list of the methods of the control with short descriptions. Click on the links for further details.
CompileSchema | Compiles an existing XSD schema into an optimized binary representation. |
Config | Sets or retrieves a configuration setting. |
DisplaySchemaInfo | Returns a string showing the structure of the schema defining the document. |
DisplayXMLInfo | Returns a string showing the structure of the parsed document as XML. |
Flush | Flushes the parser and checks its end state. |
LoadSchema | Loads a schema file describing a Transaction Set. |
Reset | Resets the parser. |
Validate | Validates the specified EDI document. |
Event List
The following is the full list of the events fired by the control with short descriptions. Click on the links for further details.
EndFunctionalGroup | Fires whenever a control segment is read that marks the end of an interchange. |
EndInterchange | Fires whenever a control segment is read that marks the end of an interchange. |
EndLoop | Fires when the end of a loop is detected in a transaction set. |
EndTransaction | Fires whenever a control segment is read that marks the end of a transaction. |
Error | Information about errors during data delivery. |
ResolveSchema | Fires whenever a new transaction set is encountered and no schema is found for it. |
Segment | Fires whenever a data segment in a transaction set is read. |
StartFunctionalGroup | Fires whenever a control segment is read that marks the start of a functional group. |
StartInterchange | Fires whenever a control segment is read that marks the start of an interchange. |
StartLoop | Fires when the starting of a loop is detected in a transaction set. |
StartTransaction | Fires whenever a control segment is read that marks the start of a transaction. |
ValidationError | Fires whenever a validation error is encountered. |
Config Settings
The following is a list of config settings for the control with short descriptions. Click on the links for further details.
ComponentDelimiter | The delimiter separating controls. |
CrossFieldValidationEnabled | Enables cross-field validation rules. |
ElementDelimiter | The delimiter character separating data elements. |
Encoding | The character encoding to be applied when reading and writing data. |
ExtraData | Extra data that has not been parsed by the control. |
HasXPath | Determines if the specified XPath exists. |
ISA11IsRepetitionSeparator | Specifies whether the ISA11 value is treated as a Repetition Separator or Standard Identifier. |
MaxValidationErrors | The maximum number of errors to save in the ValidationErrors property. |
ReleaseChar | The character used to escape delimiters within values. |
ResolveXPathOnSet | Determines whether or not the XPath is resolved when set. |
SegmentDelimiter | The delimiter character separating segments within the EDI document. |
StrictSchemaValidation | Specifies the behavior during schema validation. |
CodePage | The system code page used for Unicode to Multibyte translations. |
MaskSensitive | Whether sensitive data is masked in log messages. |
UseInternalSecurityAPI | Tells the control whether or not to use the system security libraries or an internal implementation. |
EDIStandardVersion Property (VDAValidator Control)
The version of the EDI specification.
Syntax
vdavalidatorcontrol.EDIStandardVersion
Default Value
""
Remarks
This property will be populated after parsing begins and the correct version string for is located via the schema, such as 004010 for X12.
This property is read-only and not available at design time.
Data Type
String
InputData Property (VDAValidator Control)
The data to parse.
Syntax
vdavalidatorcontrol.InputData[=string]
Default Value
""
Remarks
This property specifies the data to be parsed.
Input Properties
The control will determine the source of the input based on which properties are set.
The order in which the input properties are checked is as follows:
- InputFile
- InputData
Data Type
String
InputFile Property (VDAValidator Control)
The file to parse.
Syntax
vdavalidatorcontrol.InputFile[=string]
Default Value
""
Remarks
This property specifies the file to be processed. Set this property to the full or relative path to the file which will be processed.
Input Properties
The control will determine the source of the input based on which properties are set.
The order in which the input properties are checked is as follows:
- InputFile
- InputData
This property is not available at design time.
Data Type
String
SchemaFormat Property (VDAValidator Control)
The format of the schema file.
Syntax
vdavalidatorcontrol.SchemaFormat[=integer]
Possible Values
schemaAutomatic(0), schemaBinary(1), schemaBizTalk(2), schemaSEF(3), schemaBOTS(4), schemaAltova(5), schemaJSON(6)
Default Value
0
Remarks
Set SchemaFormat before calling the LoadSchema method to specify the loading schema format.
The following schema formats are supported:
0 (schemaAutomatic - default) | The schema type is automatically determined based on file extension. |
1 (schemaBinary) | A binary schema that was previously compiled by calling CompileSchema. |
2 (schemaBizTalk) | BizTalk (XSD): http://msdn.microsoft.com/en-us/library/aa559426(v=BTS.70).aspx |
3 (schemaSEF) | TIBCO Standard Exchange Format (SEF): https://docs.tibco.com/products/tibco-foresight-edisim-6-18-0 |
5 (schemaAltova) | Altova: http://www.altova.com/ |
6 (schemaJSON - recommended) | ArcESB JSON: https://arc.cdata.com/ |
Data Type
Integer
ValidationErrorCount Property (VDAValidator Control)
The number of records in the ValidationError arrays.
Syntax
vdavalidatorcontrol.ValidationErrorCount
Default Value
0
Remarks
This property controls the size of the following arrays:
- ValidationErrorColumn
- ValidationErrorElementErrorCode
- ValidationErrorElementPosition
- ValidationErrorErrorCode
- ValidationErrorLine
- ValidationErrorMessage
- ValidationErrorSegmentErrorCode
- ValidationErrorSegmentNumber
- ValidationErrorSegmentTag
- ValidationErrorTechnicalErrorCode
This property is read-only and not available at design time.
Data Type
Integer
ValidationErrorColumn Property (VDAValidator Control)
The column number in the EDI document where the error occurred.
Syntax
vdavalidatorcontrol.ValidationErrorColumn(ValidationErrorIndex)
Default Value
0
Remarks
The column number in the EDI document where the error occurred. This value may be used in conjunction with the ValidationErrorLine property to determine the exact location within the EDI document where the error occurred.
The ValidationErrorIndex parameter specifies the index of the item in the array. The size of the array is controlled by the ValidationErrorCount property.
This property is read-only and not available at design time.
Data Type
Integer
ValidationErrorElementErrorCode Property (VDAValidator Control)
The error code which may be used in the IK403 property of a 999.
Syntax
vdavalidatorcontrol.ValidationErrorElementErrorCode(ValidationErrorIndex)
Default Value
""
Remarks
The error code which may be used in the IK403 field of a 999.
Note: This property is specific to X12 documents and is not applicable to other document types.
The ValidationErrorIndex parameter specifies the index of the item in the array. The size of the array is controlled by the ValidationErrorCount property.
This property is read-only and not available at design time.
Data Type
String
ValidationErrorElementPosition Property (VDAValidator Control)
This property holds the position of the element where the error occurred.
Syntax
vdavalidatorcontrol.ValidationErrorElementPosition(ValidationErrorIndex)
Default Value
0
Remarks
This property holds the position of the element where the error occurred.
The ValidationErrorIndex parameter specifies the index of the item in the array. The size of the array is controlled by the ValidationErrorCount property.
This property is read-only and not available at design time.
Data Type
Integer
ValidationErrorErrorCode Property (VDAValidator Control)
The ErrorCode property contains the type of error encountered.
Syntax
vdavalidatorcontrol.ValidationErrorErrorCode(ValidationErrorIndex)
Default Value
0
Remarks
The ValidationErrorErrorCode property contains the type of error encountered. Possible values are:
0 | The component is not required but is present. |
1 | Invalid segment count. |
2 | Invalid transaction count. |
3 | Invalid group count. |
4 | Invalid interchange control number. |
5 | Invalid group control number. |
6 | Invalid transaction control number. |
10 | A required data element is missing. |
11 | Invalid field length. |
12 | Invalid field value. |
13 | A required component is missing. |
14 | The data element is not defined but is present. |
30 | Required segment is missing. |
31 | Required loop is missing. |
32 | Occurrences exceeds the schema defined limit. |
33 | Occurrences is less than the schema defined minimum. |
40 | Paired rule validation failed, the pair of elements must be present. |
41 | At least one of element is required, see message for list of elements. |
42 | Exclusion validation failed, only one of the elements can be present. |
43 | Conditional rule validation failed. |
44 | List conditional rule validation failed. |
45 | First then none validation failed. The presence of an element requires that other specific elements must not be present. |
46 | Only one or none of the elements can be present. |
The ValidationErrorIndex parameter specifies the index of the item in the array. The size of the array is controlled by the ValidationErrorCount property.
This property is read-only and not available at design time.
Data Type
Integer
ValidationErrorLine Property (VDAValidator Control)
The line number in the EDI document where the error occurred.
Syntax
vdavalidatorcontrol.ValidationErrorLine(ValidationErrorIndex)
Default Value
0
Remarks
The line number in the EDI document where the error occurred. This value may be used in conjunction with the ValidationErrorColumn property to determine the exact location within the EDI document where the error occurred.
The ValidationErrorIndex parameter specifies the index of the item in the array. The size of the array is controlled by the ValidationErrorCount property.
This property is read-only and not available at design time.
Data Type
Integer
ValidationErrorMessage Property (VDAValidator Control)
Message is a textual description of the error.
Syntax
vdavalidatorcontrol.ValidationErrorMessage(ValidationErrorIndex)
Default Value
""
Remarks
ValidationErrorMessage is a textual description of the error.
The ValidationErrorIndex parameter specifies the index of the item in the array. The size of the array is controlled by the ValidationErrorCount property.
This property is read-only and not available at design time.
Data Type
String
ValidationErrorSegmentErrorCode Property (VDAValidator Control)
The error code which may be used in the IK304 property of a 999.
Syntax
vdavalidatorcontrol.ValidationErrorSegmentErrorCode(ValidationErrorIndex)
Default Value
""
Remarks
The error code which may be used in the IK304 field of a 999.
Note: This property is specific to X12 documents and is not applicable to other document types.
The ValidationErrorIndex parameter specifies the index of the item in the array. The size of the array is controlled by the ValidationErrorCount property.
This property is read-only and not available at design time.
Data Type
String
ValidationErrorSegmentNumber Property (VDAValidator Control)
This property is the index of the segment where the error occurred.
Syntax
vdavalidatorcontrol.ValidationErrorSegmentNumber(ValidationErrorIndex)
Default Value
0
Remarks
This property is the index of the segment where the error occurred.
The ValidationErrorIndex parameter specifies the index of the item in the array. The size of the array is controlled by the ValidationErrorCount property.
This property is read-only and not available at design time.
Data Type
Integer
ValidationErrorSegmentTag Property (VDAValidator Control)
This property specifies the tag name of the segment where the error occurred.
Syntax
vdavalidatorcontrol.ValidationErrorSegmentTag(ValidationErrorIndex)
Default Value
""
Remarks
This property specifies the tag name of the segment where the error occurred.
The ValidationErrorIndex parameter specifies the index of the item in the array. The size of the array is controlled by the ValidationErrorCount property.
This property is read-only and not available at design time.
Data Type
String
ValidationErrorTechnicalErrorCode Property (VDAValidator Control)
This property holds a technical error code that helps identify structural issues with the document.
Syntax
vdavalidatorcontrol.ValidationErrorTechnicalErrorCode(ValidationErrorIndex)
Default Value
""
Remarks
This property holds a technical error code that helps identify structural issues with the document. For instance when parsing an X12 document this will hold values that may be used for TA1 error codes.
Note: This property is specific to X12 documents and is not applicable to other document types.
Possible values are:
001 | The Interchange Control Numbers in the header ISA 13 and trailer IEA02 do not match. |
014 | Invalid interchange date value (non-numeric characters or wrong length). |
015 | Invalid interchange time value (non-numeric characters or wrong length). |
022 | The ISA segment is missing elements (invalid control structure). |
024 | Invalid interchange content (e.g., Invalid GS segment). |
The ValidationErrorIndex parameter specifies the index of the item in the array. The size of the array is controlled by the ValidationErrorCount property.
This property is read-only and not available at design time.
Data Type
String
CompileSchema Method (VDAValidator Control)
Compiles an existing XSD schema into an optimized binary representation.
Syntax
vdavalidatorcontrol.CompileSchema XsdSchema, BinSchema
Remarks
This method parses XsdSchema and generates an optimized binary representation that is saved into the path referenced by BinSchema. Binary schemas are smaller and require less resources when loading later using LoadSchema
If the schema file does not exists or cannot be parsed as an EDI schema, the component throws an exception.
Config Method (VDAValidator Control)
Sets or retrieves a configuration setting.
Syntax
vdavalidatorcontrol.Config ConfigurationString
Remarks
Config is a generic method available in every control. It is used to set and retrieve configuration settings for the control.
These settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the control, access to these internal properties is provided through the Config method.
To set a configuration setting named PROPERTY, you must call Config("PROPERTY=VALUE"), where VALUE is the value of the setting expressed as a string. For boolean values, use the strings "True", "False", "0", "1", "Yes", or "No" (case does not matter).
To read (query) the value of a configuration setting, you must call Config("PROPERTY"). The value will be returned as a string.
DisplaySchemaInfo Method (VDAValidator Control)
Returns a string showing the structure of the schema defining the document.
Syntax
vdavalidatorcontrol.DisplaySchemaInfo
Remarks
After calling LoadSchema this may be called to obtain information about the structure of the schema defining the document. If the desired XPath is not known this helps determine the structure so that the correct XPath can be built.
Note: A valid schema must be loaded via LoadSchema.
For instance:
Console.WriteLine(component.DisplaySchemaInfo());
Will output text like:
ST[0,1] BIG[0,1] NTE[0,100] CUR[0,1] REF[0,12] YNQ[0,10] PER[0,3] N1Loop1[0,200] N1[0,1] N2[0,2] N3[0,2] N4[0,1] REF_2[0,12] PER_2[0,3] DMG[0,1] ITD[0,999999] DTM[0,10] FOB[0,1] PID[0,200] MEA[0,40] PWK[0,25] PKG[0,25] L7[0,1] BAL[0,999999] INC[0,1] PAM[0,999999] LMLoop1[0,10] LM[0,1] LQ[0,100] N9Loop1[0,1] N9[0,1] MSG[0,10] V1Loop1[0,999999] V1[0,1] R4[0,999999] DTM_2[0,999999] FA1Loop1[0,999999] FA1[0,1] FA2[0,999999] IT1Loop1[0,200000] IT1[0,1] CRC[0,1] QTY[0,5] CUR_2[0,1] IT3[0,5] TXI[0,10] CTP[0,25] PAM_2[0,10] MEA_2[0,40] PIDLoop1[0,1000] PID_2[0,1] MEA_3[0,10] PWK_2[0,25] PKG_2[0,25] PO4[0,1] ITD_2[0,2] REF_3[0,999999] YNQ_2[0,10] PER_3[0,5] SDQ[0,500] DTM_3[0,10] CAD[0,999999] L7_2[0,999999] SR[0,1] SACLoop1[0,25] SAC[0,1] TXI_2[0,10] SLNLoop1[0,1000] SLN[0,1] DTM_4[0,1] REF_4[0,999999] PID_3[0,1000] SAC_2[0,25] TC2[0,2] TXI_3[0,10] N1Loop2[0,200] N1_2[0,1] N2_2[0,2] N3_2[0,2] N4_2[0,1] REF_5[0,12] PER_4[0,3] DMG_2[0,1] LMLoop2[0,10] LM_2[0,1] LQ_2[0,100] V1Loop2[0,999999] V1_2[0,1] R4_2[0,999999] DTM_5[0,999999] FA1Loop2[0,999999] FA1_2[0,1] FA2_2[0,999999] TDS[0,1] TXI_4[0,10] CAD_2[0,1] AMT[0,999999] SACLoop2[0,25] SAC_3[0,1] TXI_5[0,10] ISSLoop1[0,999999] ISS[0,1] PID_4[0,1] CTT[0,1] SE[0,1]
DisplayXMLInfo Method (VDAValidator Control)
Returns a string showing the structure of the parsed document as XML.
Syntax
vdavalidatorcontrol.DisplayXMLInfo
Remarks
After the EDI document has been parsed this method may be called to obtain information about the document structure.
The parsed data is represented as XML when queried. This shows all parsed data and may be useful for testing and debugging purposes.
For instance:
Console.WriteLine(component.DisplayXMLInfo());
Will output text like:
<IX tag="ISA" ISA01="00" ISA02=" " ISA03="00" ISA04=" " ISA05="ZZ" ISA06="ACME " ISA07="ZZ" ISA08="WAYNE_TECH " ISA09="160707" ISA10="1544" ISA11="U" ISA12="00401" ISA13="000000006" ISA14="0" ISA15="T" ISA16=">"> <FG tag="GS" GS01="IN" GS02="ACME" GS03="WAYNE_TECH" GS04="20160707" GS05="1544" GS06="6" GS07="T" GS08="004010"> <TX tag="ST" ST01="810" ST02="0001"> <BIG tag="BIG" BIG01="20150708" BIG02="3003014445" BIG03="" BIG04="0476553272" BIG05="" BIG06="" BIG07="DR"/> <CUR tag="CUR" CUR01="SE" CUR02="USD"/> <REF tag="REF" REF01="8M" REF02="0056"/> <N1Loop1> <N1 tag="N1" N101="BY" N102="Company" N103="92" N104="544380"/> <N3 tag="N3" N301="Address"/> <N4 tag="N4" N401="City" N402="CA" N403="Postal Code"/> </N1Loop1> <N1Loop1> <N1 tag="N1" N101="ST" N102="Name" N103="92" N104="0607047800010"/> <N3 tag="N3" N301="Address"/> <N4 tag="N4" N401="City" N402="" N403="200131" N404="US"/> </N1Loop1> <N1Loop1> <N1 tag="N1" N101="RE" N102="Name" N103="92" N104="5095956"/> <N3 tag="N3" N301="Address"/> <N4 tag="N4" N401="City" N402="IL" N403="Postal Code"/> </N1Loop1> <IT1Loop1> <IT1 tag="IT1" IT101="20" IT102="2500" IT103="EA" IT104="36.96" IT105="" IT106="BP" IT107="335S0594"/> <REF_3 tag="REF" REF01="KK" REF02="0099778154"/> <REF_3 tag="REF" REF01="PO" REF02="0476553272" REF03="20"/> </IT1Loop1> <TDS tag="TDS" TDS01="9240000"/> <CTT tag="CTT" CTT01="1"/> </TX> </FG> </IX>
Flush Method (VDAValidator Control)
Flushes the parser and checks its end state.
Syntax
vdavalidatorcontrol.Flush
Remarks
When Flush is called, the parser flushes all its buffers, firing events as necessary, and then checks its end state.
Any extra un-parsed data will be populated in the ExtraData property after this method is called.
LoadSchema Method (VDAValidator Control)
Loads a schema file describing a Transaction Set.
Syntax
vdavalidatorcontrol.LoadSchema FileName
Remarks
This method parses the File and loads it into an internal schema list. The control will attempt to automatically detect the SchemaFormat.
If the schema file does not exist or cannot be parsed as an EDI schema, the control fails with an error.
Reset Method (VDAValidator Control)
Resets the parser.
Syntax
vdavalidatorcontrol.Reset
Remarks
When called, the parser flushes all its buffers, firing events as necessary, and then initializes itself to its default state.
Reset must also be used as signal to the parser that the current stream of text has terminated.
Validate Method (VDAValidator Control)
Validates the specified EDI document.
Syntax
vdavalidatorcontrol.Validate
Remarks
This method validates the EDI document specified by InputFile or InputData.
Before calling Validate set SchemaFormat and call LoadSchema to load the schema for the document to be validated. The schema defines many validation rules such as minimum and maximum lengths, minimum and maximum occurrences, and more. The validation performed by the control depends largely on the schema's definition.
When the Validate method is called the control will attempt to validate the document. If errors are found during validation the ValidationError event will fire with details about each error as it is encountered. After the document has been validated the ValidationErrors property will be populated with details of each error.
Inspect the ValidationErrors property for information on any errors that were encountered.
Validation Example
validator.InputFile = "files/EDIDocuments/MyEDIDoc.txt";
validator.LoadSchema("my_schemas/00501/RSSBus_005010X222A1_837.json");
validator.Validate();
foreach (ValidationErrorDetail error in validator.ValidationErrors) {
Console.WriteLine(error.ErrorCode + ": " + error.Message);
}
EndFunctionalGroup Event (VDAValidator Control)
Fires whenever a control segment is read that marks the end of an interchange.
Syntax
Sub vdavalidatorcontrol_EndFunctionalGroup(Tag As String, ControlNumber As String, Count As Integer, FullSegment As String)
Remarks
The EndFunctionalGroup event will fire when a control segment marking the end of a functional group is read. The Tag parameter contains the tag of the segment, such as GE. ControlNumber contains the control number associated with the segment, and links this event with the corresponding StartFunctionalGroup event. Count contains the value of the count element included in the closing segment, which identifies the number of transactions in a functional group.
EndInterchange Event (VDAValidator Control)
Fires whenever a control segment is read that marks the end of an interchange.
Syntax
Sub vdavalidatorcontrol_EndInterchange(Tag As String, ControlNumber As String, FullSegment As String)
Remarks
The EndInterchange event will fire when a control segment marking the end of an interchange is read. The Tag parameter contains the tag of the segment, such as IEA. ControlNumber contains the control number associated with the segment, and links this event with the corresponding StartInterchange event.
EndLoop Event (VDAValidator Control)
Fires when the end of a loop is detected in a transaction set.
Syntax
Sub vdavalidatorcontrol_EndLoop()
Remarks
The EndLoop event will fire after the last segment in a loop is read. Each EndLoop event is paired with one StartLoop event.
EndTransaction Event (VDAValidator Control)
Fires whenever a control segment is read that marks the end of a transaction.
Syntax
Sub vdavalidatorcontrol_EndTransaction(Tag As String, ControlNumber As String, Count As Integer, FullSegment As String)
Remarks
The EndTransaction event will fire when a control segment marking the end of a transaction is read. The Tag parameter contains the tag of the segment, such as SE. ControlNumber contains the control number associated with the segment, and links this event with the corresponding StartTransaction event. Count contains the value of the count element included in the closing segment, which identifies the number of segments in a transaction set.
Error Event (VDAValidator Control)
Information about errors during data delivery.
Syntax
Sub vdavalidatorcontrol_Error(ErrorCode As Integer, Description As String)
Remarks
The Error event is fired in case of exceptional conditions during message processing. Normally the control fails with an error.
ErrorCode contains an error code and Description contains a textual description of the error. For a list of valid error codes and their descriptions, please refer to the Error Codes section.
The Error event is fired in case of exceptional conditions during message processing. Normally the control fails with an error.
ErrorCode contains an error code and Description contains a textual description of the error. For a list of valid error codes and their descriptions, please refer to the Error Codes section.
ResolveSchema Event (VDAValidator Control)
Fires whenever a new transaction set is encountered and no schema is found for it.
Syntax
Sub vdavalidatorcontrol_ResolveSchema(TransactionCode As String, StandardVersion As String)
Remarks
The ResolveSchema event will fire when a the control encounters the header segment of a new transaction set, but it finds no schema corresponding to it already loaded.
TransactionCode contains the code of the transaction, such as "810" or "APERAK".
StandardVersion contains the version of the transaction, such as "004010" or "D95A".
When processing this event, the caller can use LoadSchema() to load a new schema into the control that can be used to parse the transaction.
After the event fires, if the control still doesn't have a matching schema, then it will attempt schema-less parsing of the transaction set.
Segment Event (VDAValidator Control)
Fires whenever a data segment in a transaction set is read.
Syntax
Sub vdavalidatorcontrol_Segment(Tag As String, Name As String, LoopName As String, FullSegment As String)
Remarks
The Segment event will fire when a data segment is read. The Tag parameter contains the tag of the segment. Name contains the name of the segment as defined in the associated transaction set schema. LoopName contains the name of the loop or group this segment is present in (such as N1Loop1).
StartFunctionalGroup Event (VDAValidator Control)
Fires whenever a control segment is read that marks the start of a functional group.
Syntax
Sub vdavalidatorcontrol_StartFunctionalGroup(Tag As String, ControlNumber As String, FullSegment As String)
Remarks
The StartFunctionalGroup event will fire when a control segment marking the start of a functional group structure is read. The Tag parameter contains the tag of the segment, such as GS. ControlNumber contains the control number associated with the segment.
StartInterchange Event (VDAValidator Control)
Fires whenever a control segment is read that marks the start of an interchange.
Syntax
Sub vdavalidatorcontrol_StartInterchange(Tag As String, ControlNumber As String, FullSegment As String)
Remarks
The StartInterchange event will fire when a control segment marking the start of an interchange structure is read. The Tag parameter contains the tag of the segment, such as ISA. ControlNumber contains the control number associated with the segment.
StartLoop Event (VDAValidator Control)
Fires when the starting of a loop is detected in a transaction set.
Syntax
Sub vdavalidatorcontrol_StartLoop(Name As String)
Remarks
The StartLoop event will fire when the tag of a loop trigger segment is read. The Name parameter contains the schema-provided name of the loop, such as "N1Loop1".
StartTransaction Event (VDAValidator Control)
Fires whenever a control segment is read that marks the start of a transaction.
Syntax
Sub vdavalidatorcontrol_StartTransaction(Tag As String, ControlNumber As String, Code As String, FullSegment As String)
Remarks
The StartTransaction event will fire when a control segment marking the start of a transaction is read. The Tag parameter contains the tag of the segment, such as ST. ControlNumber contains the control number associated with the segment. Code contains the transaction code (such as 810).
ValidationError Event (VDAValidator Control)
Fires whenever a validation error is encountered.
Syntax
Sub vdavalidatorcontrol_ValidationError(ErrorCode As Integer, Message As String, SegmentNumber As Integer, SegmentTag As String, TechnicalErrorCode As String, SegmentErrorCode As String, ElementErrorCode As String, ElementPosition As Integer, Line As Integer, Column As Integer)
Remarks
This event will fire with errors as the EDI document is validated. The ErrorCode parameter contains the type of error encountered. Message is a textual description of the problem. SegmentNumber is the index of the segment where the problem was found. SegmentTag holds the tag name of the segment. ElementPosition is the position of the element where the error occurred.
The Line and Column parameters identify the location within the EDI document where the error occurred.
Possible ErrorCode values are:
0 | The component is not required but is present. |
1 | Invalid segment count. |
2 | Invalid transaction count. |
3 | Invalid group count. |
4 | Invalid interchange control number. |
5 | Invalid group control number. |
6 | Invalid transaction control number. |
10 | A required data element is missing. |
11 | Invalid field length. |
12 | Invalid field value. |
13 | A required component is missing. |
14 | The data element is not defined but is present. |
30 | Required segment is missing. |
31 | Required loop is missing. |
32 | Occurrences exceeds the schema defined limit. |
33 | Occurrences is less than the schema defined minimum. |
40 | Paired rule validation failed, the pair of elements must be present. |
41 | At least one of element is required, see message for list of elements. |
42 | Exclusion validation failed, only one of the elements can be present. |
43 | Conditional rule validation failed. |
44 | List conditional rule validation failed. |
45 | First then none validation failed. The presence of an element requires that other specific elements must not be present. |
46 | Only one or none of the elements can be present. |
X12 Specific Parameters
The following parameters are available in all validator controls but are only applicable to X12 document validation at this time.
SegmentErrorCode holds the error code that may be used in the IK304 field of a 999. ElementErrorCode holds the error code that may be used in the IK403 field of a 999.
TechnicalErrorCode holds a technical error code that helps identify structural issues with the document. For instance when parsing an X12 document this will hold values that may be used for TA1 error codes. When parsing X12 documents the following codes are applicable:
001 | The Interchange Control Numbers in the header ISA 13 and trailer IEA02 do not match. |
014 | Invalid interchange date value (non-numeric characters or wrong length). |
015 | Invalid interchange time value (non-numeric characters or wrong length). |
022 | The ISA segment is missing elements (invalid control structure). |
024 | Invalid interchange content (e.g., Invalid GS segment). |
Config Settings (VDAValidator Control)
The control accepts one or more of the following configuration settings. Configuration settings are similar in functionality to properties, but they are rarely used. In order to avoid "polluting" the property namespace of the control, access to these internal properties is provided through the Config method.X12Validator Config Settings | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ComponentDelimiter:
The delimiter separating components.After parsing an EDI document, this configuration option will return the delimiter used to separate components within data elements of the EDI document.
This configuration option may be set in the StartInterchange event to specify the delimiter to be used. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CrossFieldValidationEnabled:
Enables cross-field validation rules.If (default), cross-field validation rules present in the document schema will be checked.
Note, Bots Schema Files do not support syntax rules, therefore CrossFieldValidation rules will never execute for these schemas. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ElementDelimiter:
The delimiter character separating data elements.After parsing an EDI document, this configuration option will return the delimiter used to separate data elements within segments of the EDI document.
This configuration option may be set in the StartInterchange event to specify the delimiter to be used. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Encoding: The character encoding to be applied when reading and writing data.If the data contains non-ASCII characters this setting should be specified so characters are properly preserved. This value should be set to a valid character set such as "UTF-8" or "ISO-8859-1". | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ExtraData: Extra data that has not been parsed by the component.This setting will only be populated after the Flush method has been called and data exists in the internal parser which has not been processed. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
HasXPath:
Determines if the specified XPath exists.This setting can be used to query if an XPath exists before setting XPath. For instance:
Console.WriteLine(edireader.Config("HasXPath=IX/FG/TX/IT1Loop1/[2]"));
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ISA11IsRepetitionSeparator: Specifies whether the ISA11 value is treated as a Repetition Separator or Standard Identifier.By default this value is True and the ISA11 value is treated as a Repetition Separator in all documents with version 004040 or greater. Set this value to False to treat ISA11 as a Standard Identifier instead of a Repetition Separator. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
MaxValidationErrors: The maximum number of errors to save in the ValidationErrors property.This setting specifies the maximum number of errors that will be kept in the ValidationErrors property. Once this limit is exceeded the ValidationError event will continue to fire but details will not be saved in the ValidationErrors property. The default value is 200. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ReleaseChar:
The character used to escape delimiters within values.After parsing an EDI document, this configuration option will return the escape character used to escape delimiters within values within the EDI document.
This configuration option may be set in the StartInterchange event to specify the escape character to be used. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
ResolveXPathOnSet:
Determines whether or not the XPath is resolved when set.When true, the control will fully resolve a detailed path when XPath is specified. In this case, the XPath property will contain the XSegment s name as well as the indices when queried after being set.
If this value is set to false, the exact string will be returned when the XPath property is queried from the last time it was set. For example, the following code will print the string "/[1]/[1]/[1]/[10]"
when this value is false, and would print "/IX[1]/FG[1]/TX[1]/IT1Loop1[4]" when this value is true:
In another example, the following code sample will print "IX/FG/TX/IT1Loop1"
when false and would print "/IX[1]/FG[1]/TX[1]/IT1Loop1[1]" when true:
This is useful in cases where the full XPath including indices is needed for future processing. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
SegmentDelimiter:
The delimiter character separating segments within the EDI document.After parsing an EDI document, this configuration option will return the delimiter used to separate segments within the EDI document.
This configuration option may be set in the StartInterchange event to specify the delimiter to be used. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
StrictSchemaValidation:
Specifies the behavior during schema validation.This setting specifies what happens when performing schema validation and a validation
warning occurs. By default this value is set to 1 (Warn) and the Warning event will fire, but processing
will not stop. See the WarnCode parameter list in the Warning event for details about
possible validation warnings. Possible values for this setting are:
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Base Config Settings | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
CodePage:
The system code page used for Unicode to Multibyte translations.The default code page is Unicode UTF-8 (65001).
The following is a list of valid code page identifiers:
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
MaskSensitive:
Whether sensitive data is masked in log messages.In certain circumstances it may be beneficial to mask sensitive data, like passwords, in log messages. Set this to to mask sensitive data. The default is .
This setting only works on these controls: AS3Receiver, AS3Sender, Atom, Client(3DS), FTP, FTPServer, IMAP, OFTPClient, SSHClient, SCP, Server(3DS), Sexec, SFTP, SFTPServer, SSHServer, TCPClient, TCPServer. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
UseInternalSecurityAPI:
Tells the control whether or not to use the system security libraries or an internal implementation.
When set to , the control will use the system security libraries by default to perform cryptographic functions where applicable.
Setting this setting to tells the control to use the internal implementation instead of using the system security libraries. This setting is set to by default on all platforms. |
Trappable Errors (VDAValidator Control)
X12Validator Errors
21001 Input/Output error | |
21002 No stream or file name were specified for the component | |
21003 Unexpected end of file (EOF). | |
21004 Segment not found. | |
21005 Segment not found in schema. | |
21006 Schema not found. | |
21011 Invalid Writer state. | |
21012 Segment does not have the specified element or component. | |
21013 Invalid XPath. | |
21014 DOM tree unavailable (set BuildDOM and reparse). | |
21015 Document contains incomplete segments. | |
21016 Document contains an open EDI structure (interchange, functional group or transaction) with no matching footer segment. | |
21045 Error while reading schema file. | |
21101 Component is busy. | |
21100 Unexpected error. |