- Knowledgebase
- XML Schema
- Missing Tag
-
Glossary
-
XML / ISO 20022 Standard
-
ISO 20022 Messages
-
XML Schema
- Miscellaneous
- Attribute
- Closing Tag
- Comment
- Content
- Cvc-complex-type
- Cvc-elt
- Cvc-id
- Cvc-identity-constraint
- Cvc-minexclusive-valid
- Cvc-mininclusive-valid
- Cvc-type
- Cvc-totaldigits-valid
- Cvc-attribute
- Cvc-datatype-valid
- Maximum Length
- Cvc-enumeration-valid
- Cvc-fractiondigits-valid
- Cvc-length-valid
- Cvc-maxexclusive-valid
- Cvc-maxinclusive-valid
- Cvc-maxlength-valid
- Cvc-minlength-valid
- Cvc-pattern-valid
- Element Value
- Encoding
- Length
- Mandatory element
- Missing
- Missing Tag
- Missing Child Element
- MIXD
- Root
- Unsupported Characters
- UTF-8
- Value
- Wrong Declaration
-
EPC SEPA
-
CGI-MP
-
US ACH (Nacha)
-
SWIFT MT
-
Finvoice
-
Bank-Specific
-
XMLdation Service Guides
-
Studio Guide
-
Simulator
76
The XML file is not well-formed.
Notice! This page describes the nature of the error using a hypothetical example and not the erroneous data of the input test file. You should however be able to apply this information to your error case.
Error description:
The XML file is not well-formed. Tags are not correctly nested or tag is opened and closed with different tag-name, check for typing mistakes.
Example 1:
Here the attribute Ccy of element <InstdAmt> is missing the closing quotation mark which is causing the parsing to fail. This can be fixed by adding the missing quotation mark.
Example 2:
For example this XML would produce the error.
<company>
<name>XMLDation.com
</company>
</name>
In the example <name> element is a child element of <company> but the closing tag of </name> comes after the closing tag of </company>. Correct way to present this would be:
<company>
<name>XMLDation.com</name>
</company>
Explanation of the error message given by validator:
Opening and ending tag mismatch: tag1 line 38 and tag2
Where tag1 starting at line 38 and tag2 is the position where the error is noticed.