Monday, February 28, 2011

Flash Error #1090: XML parser failure element is malformed

This Flash action script error 1090 with message such as "XML parser failure" or "element is malformed" happens when you try to parse or read an XML with mismatching nodes or tags.

Solution:

Check the XML nodes.  Each node should end with a matching tag with the terminator "/".  For example:


Check the XML nodes.  Each node should end with a matching tag with the terminator "/".  For example:

<xml>
  <node1>hi</node1>
  <node2>hello</node2>
</xml>


Other similar XML errors include:


1087

Assignment to indexed XML is not allowed.
1088The markup in the document following the root element must be well-formed.
1089Assignment to lists with more than one item is not supported
1090XML parser failure: element is malformed
1091XML parser failure: Unterminated CDATA section
1092XML parser failure: Unterminated XML declaration
1093XML parser failure: Unterminated DOCTYPE declaration
1094XML parser failure: Unterminated comment
1095XML parser failure: Unterminated attribute
1096XML parser failure: Unterminated element
1097XML parser failure: Unterminated processing instruction

Related Links:
errors list




1 comment:

  1. what should I do If I want to fetch news from http://news.google.com/news?pz=1&cf=all&ned=in&hl=en&output=rss this string in flex application?

    ReplyDelete