FR
Table of contents
No headers
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. |

General description of the error:
Message d'erreur: The processing instruction target matching "[xX][mM][lL]" is not allowed.
Description générique de l’erreur
Cause possibles pour l’erreur
- La déclaration XML est reprise au milieu du fichier et non seulement au début du fichier.
- La déclaration XML ressemble à ceci: <? xml version = "1.0"?>
- Les données de deux ou plus de fichiers XML sont insérées dans un fichier de manière à ce que la déclaration et l'élément root soient repris plusieurs fois de manière séquentielle.
Exemple
... </PmtInf> </CstmrCdtTrfInitn> </Document> <!--First file ends here--> <!--Second file starts from the next line--> <?xml version="1.0" encoding="UTF-8"?> <Document xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="urn:iso:std:iso:20022:tech:xsd:pain.001.001.03"> <CstmrCdtTrfInitn> <GrpHdr> ... |
Error message: The processing instruction target matching "[xX][mM][lL]" is not allowed.
Comment corriger: Supprimez le contenu supplémentaire du fichier XML afin qu'il ne contienne qu'un élément root et une seule déclaration.
... </PmtInf> </CstmrCdtTrfInitn> </Document> |