A
Anthony P.
Hello Everyone,
I'm having a bit of trouble and I'm hoping someone here will be able
to give me some direction. I've spent a good two hours on Google and
simply can't figure this out.
I have this piece of XML:
<result>success</result>
<message_count>2</message_count>
<messages>
<message>
<sender_name>Joe Parnell</sender_name>
<sender_email>[email protected]</sender_email>
<subject><![CDATA[Beta Test - Anthony]]></subject>
<video_link>http://example.com/videos/33.3gp</video_link>
</message>
<messages>
<message>
<sender_name>Joe Parnell</sender_name>
<sender_email>[email protected]</sender_email>
<subject><![CDATA[Beta Test #2 - Anthony]]></subject>
<video_link>http://example.com/videos/34.3gp</video_link>
</message>
</messages>
</response>
So obvious this is the return of multiple 'message' nodes and that's
what's throwing me. How do I process these? I need to be able to parse
out each individual message. I am totally lost. Can anyone help?
Thanks!
Anthony
I'm having a bit of trouble and I'm hoping someone here will be able
to give me some direction. I've spent a good two hours on Google and
simply can't figure this out.
I have this piece of XML:
<result>success</result>
<message_count>2</message_count>
<messages>
<message>
<sender_name>Joe Parnell</sender_name>
<sender_email>[email protected]</sender_email>
<subject><![CDATA[Beta Test - Anthony]]></subject>
<video_link>http://example.com/videos/33.3gp</video_link>
</message>
<messages>
<message>
<sender_name>Joe Parnell</sender_name>
<sender_email>[email protected]</sender_email>
<subject><![CDATA[Beta Test #2 - Anthony]]></subject>
<video_link>http://example.com/videos/34.3gp</video_link>
</message>
</messages>
</response>
So obvious this is the return of multiple 'message' nodes and that's
what's throwing me. How do I process these? I need to be able to parse
out each individual message. I am totally lost. Can anyone help?
Thanks!
Anthony