Hi All,
I encountered a big wordpress rss, what xmlsax can't process.. There are a plenty of <content:encoded> (complex node with X:Y) and <![CDATA[ abundant xml text with content and item tags ]]> and looks like it is the problem.
Isn't here a newer version of this lib, because I don't want to rewrite the whole app?
thanks in advance
Steven
In my code I use the usual Parser_EndElement, I manage the "item","title", "link", "pubdate", "description" node names. The first "item" found is ok, but the next "title" what the Parser_EndElement found isn't a real "<title>", but this (the </media:title>):
It looks like if I exclude the cases when URI.length > 0, then all is ok.
It is the right approach, or it is only a special case?
Maybe I can start understand:
the xmlns:media="http://search.yahoo.com/mrss/" connects the "media" in the <media:title> to the "http://search.yahoo.com/mrss/".
So this is a right approach to exclude the URI.length>0.