user2184060
user2184060

Reputation: 55

Parsing with special character XML

I have a problem to obtain my feed xml.The problem is that when the tag doesn't contain a special character like "content", i have no problem. But when I have “:” in my tag like "d:content", my parser doesn't work.

My question is : What can i do to make it work ?

I found that link :android sax not parsing "dc:creator"? which is a similar problem, but i don't understand well the documentation

Thanks

url of my xml

Upvotes: 1

Views: 476

Answers (1)

Erik Pragt
Erik Pragt

Reputation: 14657

It's an XML namespace. Your parser is probably complaining that it cannot knows what the 'd:' is mapped to. You could also tell your XML parser to ignore namespaces, if you don't care about that. Could you post your complete XML to make things a bit more clear, in case my suggestion doesn't work for you?

Upvotes: 1

Related Questions