ETagUnterminated
Table of contents
Please note! 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. |
General description of the error:
The format of the error message: The end-tag for element type \"{0}\" must end with a ''>'' delimiter.
Error description in schema standard: http://www.w3.org/TR/2004/REC-xml-20040204/#NT-ETag
Possible causes for this error:
- Element does not have a closing tag
Example
<MsgId>ABC/090928/CCT001</MsgId <CreDtTm>2009-09-28T14:07:00</CreDtTm> |
Error message: Fatal Error ETagUnterminated : The end-tag for element type "MsgId" must end with a '>' delimiter.
How to fix: Element can be fixed by adding > into closing tag of MsgId.
<MsgId>ABC/090928/CCT001</MsgId> <CreDtTm>2009-09-28T14:07:00</CreDtTm> |