PseudoAttrNameExpected
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:
The format of the error message: A pseudo attribute name is expected.
Error description in schema standard: https://www.w3.org/TR/xml/
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"?>