views:

39

answers:

1

I have a very unusual problem. I am using NSXMLParser to parse XML but it is not being able to parse self closing tags! If the XML is something like "< media:something ....... / >", when I parse it and output the elementName in didStartElement: method, there's no output for the particular tag. All other tags which are not self closing are however being displayed. Any idea what is going on and what can be done to fix it?

Thanks in advance! :))

A: 

Is there a space between / and > ? Remove it to read as />

devio
Hey, thanks...but nope, there's no space... :(( Anything else that I could do..please do suggest...
Bangdel
Please post you XML data and code ...
Girish Kolari