Error #1088

I’m trying to load some pictures through an XML file, but I keep getting this error:

TypeError: Error #1088: The markup in the document following the root element must be well-formed.
at photo_gallery_fla::MainTimeline/fileLoaded()
at flash.events::EventDispatcher/dispatchEventFunction()
at flash.events::EventDispatcher/dispatchEvent()
at flash.net::URLLoader/onComplete()

Here what actually loads the XML

var picURL:String = xmlList.wrap.cat.item.image.thumbnail*;
var picName:String = xmlList.wrap.cat.item.image.thumbnail*;

the actual XML is set up

<portfolios>
<wrap>
<cat>
<item>
<image>
<thumbnail>
<detail>
</image>
</item>
<item>
<image>
<thumbnail>
<detail>
</image>
</item>
</cat>
<cat>
<item>
<image>
<thumbnail>
<detail>
</image>
</item>
</cat>
<wrap>
</portfolios>