Ever get a System.Xml.XmlException that says:
“Hexadecimal value 0x[whatever] is an invalid character”
…when trying to load a XML document using one of the .NET XML API objects like XmlReader, XmlDocument, or XDocument? Was “0x[whatever]” by chance one of these characters?
0×00
0×01
0×02
0×03
0×04
0×05
0×06
0×07
0×080×0B
0×0C
0×0E
0×0F0×10
0×11
0×12
0×13
0×14
0×150×1A
0×1B
0×1C
0×1D
0×1E
0×1F
0×16
0×17
0×18
0×190×7F
The problem that causes these XmlExceptions is that the data being read or loaded contains characters that are illegal according to the XML specifications. Almost always, these characters are in the ASCII control character range (think whacky characters like null, bell, backspace, etc). These aren’t characters that have any business being in XML data; they’re illegal characters that should be removed, usually having found their way into the data from file format conversions, like when someone tries to create an XML file from Excel data, or export their data to XML from a format that may be stored as binary.
The decimal range for ASCII control characters is 0 – 31, and 127. Or, in hex, 0×00 – 0×1F. (The control character 0×7F is not disallowed, but its use is “discouraged” to avoid compatibility issues.) If any character in the string or stream that contains the XML data contains one of these control characters, an XmlException will be thrown by whatever System.Xml or System.Xml.Linq class (e.g. XmlReader, XmlDocument, XDocument) is trying to load the XML data. In fact, if XML data contains the character ‘\b’ (bell), your motherboard will actually make the bell sound before the XmlException is thrown.
There are a few exceptions though: the formatting characters ‘\n’, ‘\r’, and ‘\t’ are not illegal in XML, per the 1.0 and 1.1 specifications, and therefore do not cause this XmlException. Thus, if you’re encountering XML data that is causing an XmlException because the data “contains invalid characters”, the feeds you’re processing need to be sanitized of illegal XML characters per the XML 1.0 specification (which is what System.Xml conforms to—not XML 1.1) should be removed. The methods below will accomplish this:
/// <summary>
/// Remove illegal XML characters from a string.
/// </summary>
public string SanitizeXmlString(string xml)
{
if (xml == null)
{
throw new ArgumentNullException("xml");
}
StringBuilder buffer = new StringBuilder(xml.Length);
foreach (char c in xml)
{
if (IsLegalXmlChar(c))
{
buffer.Append(c);
}
}
return buffer.ToString();
}
/// <summary>
/// Whether a given character is allowed by XML 1.0.
/// </summary>
public bool IsLegalXmlChar(int character)
{
return
(
character == 0x9 /* == '\t' == 9 */ ||
character == 0xA /* == '\n' == 10 */ ||
character == 0xD /* == '\r' == 13 */ ||
(character >= 0x20 && character <= 0xD7FF ) ||
(character >= 0xE000 && character <= 0xFFFD ) ||
(character >= 0x10000 && character <= 0x10FFFF)
);
}
Useful as these methods are, don’t go off pasting them into your code anywhere. Create a class instead. Here’s why: let’s say you use the routine to sanitize a string in one section of code. Then another section of code uses that same string that has been sanitized. How does the other section positively know that the string doesn’t contain any control characters anymore, without checking? It doesn’t. Who knows where that string has been (if it’s been sanitized) before it gets to a different routine, further down the processing pipeline. Program defensive and agnostically. If the sanitized string isn’t a string and is instead a different type that represents sanitized strings, you can guarantee that the string doesn’t contain illegal characters.
Now, if the strings that need to be sanitized are being retrieved from a Stream, via a TextReader, for example, we can create a custom StreamReader class that will skip over illegal characters. Let’s say that you’re retrieving XML like so:
string xml;
using (WebClient downloader = new WebClient())
{
using (TextReader reader =
new StreamReader(downloader.OpenRead(uri)))
{
xml = reader.ReadToEnd();
}
}
// Do something with xml...
You could use the sanitizing methods above like this:
string xml;
using (WebClient downloader = new WebClient())
{
using (TextReader reader =
new StreamReader(downloader.OpenRead(uri)))
{
xml = reader.ReadToEnd();
}
}
// Sanitize the XML
xml = SanitizeXmlString(xml);
// Do something with xml...
But creating a class that inherits from StreamReader and avoiding the costly string-building operation performed by SanitizeXmlString() is much more efficient. The class will have to override a couple methods when it’s finished, but when it is, a Stream could be consumed and sanitized like this instead:
string xml;
using (WebClient downloader = new WebClient())
{
using(XmlSanitizingStream reader =
new XmlSanitizingStream(downloader.OpenRead(uri)))
{
xml = reader.ReadToEnd()
}
}
// xml contains no illegal characters
The declaration for this XmlSanitizingStream, with IsLegalXmlChar() that we’ll need, looks like:
public class XmlSanitizingStream : StreamReader
{
// Pass 'true' to automatically detect encoding using BOMs.
// BOMs: http://en.wikipedia.org/wiki/Byte-order_mark
public XmlSanitizingStream(Stream streamToSanitize)
: base(streamToSanitize, true)
{ }
/// <summary>
/// Whether a given character is allowed by XML 1.0.
/// </summary>
public static bool IsLegalXmlChar(int character)
{
return
(
character == 0x9 /* == '\t' == 9 */ ||
character == 0xA /* == '\n' == 10 */ ||
character == 0xD /* == '\r' == 13 */ ||
(character >= 0x20 && character <= 0xD7FF ) ||
(character >= 0xE000 && character <= 0xFFFD ) ||
(character >= 0x10000 && character <= 0x10FFFF)
);
}
// ...
To get this XmlSanitizingStream working correctly, we’ll first need to override two methods integral to the StreamReader: Peek(), and Read(). The Read method should only return legal XML characters, and Peek() should skip past a character if it’s not legal.
private const int EOF = -1;
public override int Read()
{
// Read each char, skipping ones XML has prohibited
int nextCharacter;
do
{
// Read a character
if ((nextCharacter = base.Read()) == EOF)
{
// If the char denotes end of file, stop
break;
}
}
// Skip char if it's illegal, and try the next
while (!XmlSanitizingStream.
IsLegalXmlChar(nextCharacter));
return nextCharacter;
}
public override int Peek()
{
// Return next legal XML char w/o reading it
int nextCharacter;
do
{
// See what the next character is
nextCharacter = base.Peek();
}
while
(
// If it's illegal, skip over
// and try the next.
!XmlSanitizingStream
.IsLegalXmlChar(nextCharacter) &&
(nextCharacter = base.Read()) != EOF
);
return nextCharacter;
}
Next, we’ll need to override the other Read* methods (Read, ReadToEnd, ReadLine, ReadBlock). These all use Peek() and Read() to derive their returns. If they are not overridden, calling them on XmlSanitizingStream will invoke them on the underlying base StreamReader. That StreamReader will then use its Peek() and Read() methods, not the XmlSanitizingStream’s, resulting in unsanitized characters making their way through.
To make life easy and avoid writing these other Read* methods from scratch, we can disassemble the TextReader class using Reflector, and copy its versions of the other Read* methods, without having to change more than a few lines of code related to ArgumentExceptions.
The complete version of XmlSanitizingStream can be downloaded here. Rename the file extension to “.cs” from “.doc” after downloading.
Dan said
I followed what the class (NoControlCharString) in your original post was doing, but not how to modify it based upon the method in your “Update: Sept. 16th, 2008″. Can you provide an updated class with your updated method? thanks
Ono said
Great solution! Exactly what I was looking for. Did some adaptations to use it to read the response of a badly constructed webservice and it worked perfectly. Thanks for the help.
Tom said
I converted some PDF content into a string, then was writing this string into an XML file when it balked at a “0×00″ hex character. How can I use this to ’scrub’ a string? Thanks.
CAM said
Great solution. Thanks for the assistance.
Eran Kampf said
You mentioned ASCII control characters 0×00 – 0×1F are not allowed in XML but I don’t see IsLegalXmlChar checking for those characters…
Eran Kampf said
Strike that.. my bad…
Prakash said
What about stripping out these invalid chars using Regex?
“[\x00-\x1F]“
Michael said
Thanks
Tony Arnold said
Wow! An excellent solution to a problem I have right now. The problem is, I’m not an experienced programmer (but I’m getting there each day!). Could I ask, without being laughed out of the room, how do I actually implement the above code? It’s a bit above my head, but it seems to resolve my problem (illegal xml characters) – but it seems a bit double dutch right now!
Any help would be thankfully received.
Cheers!
rushikesh said
Nice article …and very useful.
Laurent Yin said
I thought that this would be the solution to my problem, but actually, I had a slightly different problem.
I used the XmlSerializer class of C# to serialize a class and it outputs in the file “” (not a single character, but the xml code to represent it).
And it still does the exception while trying to deserialize it.
I’ve decided to use this regex to remove problematic parts, but it’s ugly…
&#x(0?[0-8B-F]|1[0-9A-F]|7F);
I don’t understand why .NET’s XmlSerializer would output these codes if it knows it won’t be able to read them while deserializing…
Daron said
I convert the CSharp Code into VB… Thanks for your original code.
Public Function SanitizeXmlString(ByVal xml As String) As String
If (xml Is Nothing) Then Throw New ArgumentNullException(“xml”)
Dim buffer As StringBuilder = New StringBuilder(Xml.Length)
Dim c As Char
For Each c In xml
If (IsLegalXmlChar(Microsoft.VisualBasic.AscW(c))) Then buffer.Append(c)
Next
Return buffer.ToString()
End Function
Public Function IsLegalXmlChar(ByVal character As Integer) As Boolean
Return (character = Integer.Parse(“0×9″, Globalization.NumberStyles.HexNumber) _
Or character = Integer.Parse(“0xA”, Globalization.NumberStyles.HexNumber) _
Or character = Integer.Parse(“0xD”, Globalization.NumberStyles.HexNumber) _
Or (character >= Integer.Parse(“0×20″, Globalization.NumberStyles.HexNumber) And character = Integer.Parse(“0xE000″, Globalization.NumberStyles.HexNumber) And character = Integer.Parse(“0×10000″, Globalization.NumberStyles.HexNumber) And character <= Integer.Parse(“0×10FFFF”, Globalization.NumberStyles.HexNumber)))
End Function
jman said
I love you. The XmlSanitizingStream class has changed my life.
Tony said
Hi!
This is a great article and it’s just what I need. I’ve looked at loads of other articles on the subject, but they really don’t come close to solving a very annoying habit. However, could you please tell me how to implement this class? I’ve tried but i don’t seem to be having any success. I would be really grateful for a little nudge in the right direction.
many thanks,
Tony
Chris A said
I don’t usually leave comments but this just cured a huge headache for me.I was having issues in pulling data out of Active Directory. The code works beautifully! Thanks.
Sumit Mendiratta said
The article was very helpful.
Thanks
Sumit Mendiratta