how to get link from blogger rss (xmlsax?)

pacoMx

Member
Licensed User
Longtime User
Hi, inside an rss feed I have the following node: entry

I need to retrieve Title and link, in this case:
<title>

and the tricky part:
<link rel="alternate" type="text/html" href="http://www.acontecercristiano.net/2012/01/arqueologos-hallan-antigua-iglesia.html" title="Arqueólogos hallan antigua iglesia cristiana en Siria"/>


I'am using the XMLSax example, however I don't know how to parse the link part, as there is no node declared, any idea on how to get it?



B4X:
<entry xmlns="http://www.w3.org/2005/Atom">
<id>tag:blogger.com,1999:blog-3306195777420988046.post-2826118500833408703</id>
<published>2012-01-11T13:32:00.001-05:00</published>
<updated>2012-01-11T13:33:48.261-05:00</updated>
<category scheme="http://www.blogger.com/atom/ns#" term="Arqueologia"/>
<category scheme="http://www.blogger.com/atom/ns#" term="Arqueologia Cristiana"/>
<title type="text">Arqueólogos hallan antigua iglesia cristiana en Siria</title>
<summary type="text">Un equipo de arqueólogos sirios descubrió una iglesia y un cementerio que datan de los inicios de la era cristiana, en Tal Hasaka al nordeste de la República Árabe Siria.El arqueólogo a cargo de la expedición, Abdul Masih Baghdo, señaló que "el templo tiene un tamaño de 22,5 metros de largo por 14,5 de ancho, y fue desenterrado al sur de una catedral", según informó Prensa Latina."La iglesia fue </summary>
<link rel="replies" type="application/atom+xml" href="http://www.acontecercristiano.net/feeds/2826118500833408703/comments/default" title="Enviar comentarios"/>

<link rel="replies" type="text/html" href="http://www.blogger.com/comment.g?blogID=3306195777420988046&amp;postID=2826118500833408703&amp;isPopup=true" title="0 comentarios"/><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/3306195777420988046/posts/default/2826118500833408703"/>

<link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/3306195777420988046/posts/default/2826118500833408703"/>

<link rel="alternate" type="text/html" href="http://www.acontecercristiano.net/2012/01/arqueologos-hallan-antigua-iglesia.html" title="Arqueólogos hallan antigua iglesia cristiana en Siria"/>

<author>
<name>AcontecerCristiano.net</name><uri>http://www.blogger.com/profile/09109951544122786100</uri>
<email>[email protected]</email>
<gd:image xmlns:gd="http://schemas.google.com/g/2005" rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://3.bp.blogspot.com/-Oyl4UKtirr0/TvoJlQ8BK7I/AAAAAAAABUw/zweg9QyIWg4/s220/noti-acontecer.gif"/></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/-8aojGC_kphA/Tw3VoXSc43I/AAAAAAAABfs/nuPlKjGKvCY/s72-c/iglesia-cristiana-antigua.jpg" height="72" width="72"/>
<thr:total xmlns:thr="http://purl.org/syndication/thread/1.0">0</thr:total></entry>

Thanks.

ps:
sorry for the messy codebox, it's that way from blogger + added carriage returns for readability.
 
Top