I am retrieving the following xml via httpsService with the result
format being 'e4x'.
<projects>
<project date="08/01/08" description="Development" hours="4"
user="AA">Q3</project>
<project date="08/01/08" description="Development" hours="3"
user="AA">Q4</project>
<project date="08/04/08" description="Development" hours="4"
user="AA">Q3</project>
<project date="08/04/08" description="Development" hours="3"
user="BB">Q4</project>
<project date="08/05/08" description="Refinement" hours="6"
user="BB">Q3</project>
<project date="08/06/08" description="Refinement" hours="3"
user="CC">Q3</project>
<project date="08/07/08" description="Development" hours="2"
user="CC">Q3</project>
<project date="08/08/08" description="Development" hours="2"
user="CC">Q3</project>
</projects>
What's the best way to convert an XMLList to an ArrayCollection? Is it
possible to do so without knowing the names of the attributes?
Thanks for the assistance.