tags:

views:

32

answers:

0

Hi,

I've already asked about getting specific XML Node data. Now I need to pull through the full XML that is parsed.

The XML is as follows

  <videos>
   <video>
    <id>1</id>
    <title>Video 1</title>
    <thumbnail>1.jpg</thumbnail>
   </video> 
   <video>
   <id>2</id>
    <title>Video Number 2</title>
    <thumbnail>1.jpg</thumbnail>
   </video>
   <video>
    <id>3</id>
    <title>Video Number 3</title>
    <thumbnail>1.jpg</thumbnail>
   </video>
  </videos> 

As you can see there are 3 videos. All in Dummy Data at the moment. I have an HTTP Service setup titled 'videoList' and I'd like to pull these 3 items in. Ideally as an Unordered list or other.

Thanks