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>
<node1>hi</node1>
<node2>hello</node2>
</xml>
Other similar XML errors include:
Related Links:
errors list
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