Using FileAdapter for reading input files
When using a file adapter that reads a .csv file, and the csv file is in wrong format(does not have enough column separators) the file adapter does not throw any error.
Example:
Schema defining a csv with 3 fields
<xsd:element name="Root-Element">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="response" minOccurs="1" maxOccurs="unbounded">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="FIELD1" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy=";" nxsd:quotedBy=""" />
<xsd:element name="FIELD2" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy=";" nxsd:quotedBy=""" />
<xsd:element name="FIELD3" type="xsd:string" nxsd:style="terminated" nxsd:terminatedBy="${eol}" nxsd:quotedBy=""" />