Page last modified 15:20, 11 Aug 2014 by Antero

PseudoAttrNameExpected

     

    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: A pseudo attribute name is expected.

    Error description in schema standard: http://www.w3.org/TR/2004/REC-xml-20...04/#NT-XMLDecl

    Possible causes for this error:

    • XML declaration is not closed correctly. Declaration has to be inside a tag and question mark.

    Example

      <?xml version="1.0" encoding="UTF-8">

     

     

    Error message: Fatal Error PseudoAttrNameExpected : A pseudo attribute name is expected.

    How to fix: The issue can be fixed by adding a question after last attribute and before character >

    <?xml version="1.0" encoding="UTF-8"?>

    Menu