I had a similar issue with reading an XML from the filesystem with an Apollo app and getting malformed XML from a know well-formed XML file.
If you can view the raw XML using trace() you can usually spot the problem I saw that there was a "?" as the first character in the file stream - stripping that out of the string and then converting the string to XML solved my problem. dorkie dork from dorktown wrote: > I am trying to get results from google and use e4x to show the results in a > list component. The problem is that the XML parser is giving me a 1090: XML > parser failure: element is malformed. > > Is there a class or property that will unmalform the xml so I can use it as > an xml object? > -- Ben Marchbanks ::: alQemy ::: transforming information into intelligence http://www.alQemy.com ::: magazooms ::: digital magazines http://www.magazooms.com Greenville, SC 864.284.9918

