vote up 1 vote down star

I am working on blogging software. Occasionally users manage to paste control characters into their blog posts (for example someone recently managed to paste in the vertical tab character, ). When we render the posts in an RSS Feed, XML parsers fail to parse the control character and declare the feed invalid.

One way to fix this would be to do a character-by-character scan of the string and remove any invalid characters. This would mean maintaining a list of invalid characters. Does anyone know if such a list already exists?

Or maybe someone knows of library that already handles this problem? I am writing in C#, but I can port a library written in another language.

Or is there some solution that I am missing?

Note, this does not appear to be a unicode or an escaping problem. The RSS feed displays brackets, Chinese characters, wingdings, smart quotes, etc. just fine. It's just certain control characters that seem to make the feed not validate.

flag

2 Answers

vote up 0 vote down

Take a look at the Argotic framework for building the RSS feeds. The library handles everything very nicely.

link|flag
vote up 0 vote down

Hmm. Looks like this page has a good solution: http://cse-mjmcl.cse.bris.ac.uk/blog/2007/02/14/1171465494443.html

They get the list of valid characters from the XML spec, and just iterate through the string and strip out invalid characters.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.