<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for Tom Goff's .Net Musings</title>
	<atom:link href="http://tjoe.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://tjoe.wordpress.com</link>
	<description>Tidbits of information regarding .Net, C#, and SQL Server.</description>
	<lastBuildDate>Thu, 24 Sep 2009 07:19:14 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on SqlBulkCopy Bug by Joe</title>
		<link>http://tjoe.wordpress.com/2007/04/09/sqlbulkcopy-bug/#comment-247</link>
		<dc:creator>Joe</dc:creator>
		<pubDate>Thu, 24 Sep 2009 07:19:14 +0000</pubDate>
		<guid isPermaLink="false">http://tjoe.wordpress.com/2007/04/09/sqlbulkcopy-bug/#comment-247</guid>
		<description>More frustrating if using schema. For example, [DataLoad.RAW].TableName fails. I have to replace the . with _

Too bad.</description>
		<content:encoded><![CDATA[<p>More frustrating if using schema. For example, [DataLoad.RAW].TableName fails. I have to replace the . with _</p>
<p>Too bad.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XML Serialization Sorrows by Valso</title>
		<link>http://tjoe.wordpress.com/2007/08/23/xml-serialization-sorrows/#comment-246</link>
		<dc:creator>Valso</dc:creator>
		<pubDate>Wed, 26 Aug 2009 21:01:41 +0000</pubDate>
		<guid isPermaLink="false">http://tjoe.wordpress.com/2007/08/23/xml-serialization-sorrows/#comment-246</guid>
		<description>Brilliant!</description>
		<content:encoded><![CDATA[<p>Brilliant!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XML Serialization Sorrows by Tom Goff</title>
		<link>http://tjoe.wordpress.com/2007/08/23/xml-serialization-sorrows/#comment-239</link>
		<dc:creator>Tom Goff</dc:creator>
		<pubDate>Thu, 05 Mar 2009 16:32:56 +0000</pubDate>
		<guid isPermaLink="false">http://tjoe.wordpress.com/2007/08/23/xml-serialization-sorrows/#comment-239</guid>
		<description>Firefox is probably following the standard as defined by the World Wide Web Consortium (W3C). Just appears that Microsoft is being more flexible in allowing additional chars.</description>
		<content:encoded><![CDATA[<p>Firefox is probably following the standard as defined by the World Wide Web Consortium (W3C). Just appears that Microsoft is being more flexible in allowing additional chars.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XML Serialization Sorrows by Dennis Gorelik</title>
		<link>http://tjoe.wordpress.com/2007/08/23/xml-serialization-sorrows/#comment-238</link>
		<dc:creator>Dennis Gorelik</dc:creator>
		<pubDate>Wed, 04 Mar 2009 15:30:53 +0000</pubDate>
		<guid isPermaLink="false">http://tjoe.wordpress.com/2007/08/23/xml-serialization-sorrows/#comment-238</guid>
		<description>Tom,

Please consider &lt;a href=&quot;http://www.postjobfree.com/InvalidChar.xml&quot; rel=&quot;nofollow&quot;&gt;InvalidChar.xml&lt;/a&gt; with invalid char:

    &lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
    &lt;xml&gt;
        &#xC;
    &lt;/xml&gt;

When I try to open it in FireFox -- I&#039;m getting &quot;XML Parsing Error: reference to invalid character number&quot;.
FireFox is not developed by Microsoft, so I assume that FireFox 3.0.6 is enforcing commonly recognized XML standard in that case.
The ironic part is that I can open &lt;a href=&quot;http://www.postjobfree.com/InvalidChar.xml&quot; rel=&quot;nofollow&quot;&gt;InvalidChar.xml&lt;/a&gt; in Internet Explorer 7.0 without errors.

What&#039;s your take on this?
Why this chars are prohibited in XML?
How should I treat such characters if I need to serialize them into XML?</description>
		<content:encoded><![CDATA[<p>Tom,</p>
<p>Please consider <a href="http://www.postjobfree.com/InvalidChar.xml" rel="nofollow">InvalidChar.xml</a> with invalid char:</p>
<p>    &lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;utf-8&#8243;?&gt;<br />
    &lt;xml&gt;<br />
        &amp;#xC;<br />
    &lt;/xml&gt;</p>
<p>When I try to open it in FireFox &#8212; I&#8217;m getting &#8220;XML Parsing Error: reference to invalid character number&#8221;.<br />
FireFox is not developed by Microsoft, so I assume that FireFox 3.0.6 is enforcing commonly recognized XML standard in that case.<br />
The ironic part is that I can open <a href="http://www.postjobfree.com/InvalidChar.xml" rel="nofollow">InvalidChar.xml</a> in Internet Explorer 7.0 without errors.</p>
<p>What&#8217;s your take on this?<br />
Why this chars are prohibited in XML?<br />
How should I treat such characters if I need to serialize them into XML?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XML Serialization Sorrows by Tom Goff</title>
		<link>http://tjoe.wordpress.com/2007/08/23/xml-serialization-sorrows/#comment-237</link>
		<dc:creator>Tom Goff</dc:creator>
		<pubDate>Wed, 04 Mar 2009 13:26:35 +0000</pubDate>
		<guid isPermaLink="false">http://tjoe.wordpress.com/2007/08/23/xml-serialization-sorrows/#comment-237</guid>
		<description>Hi Dennis,

The issue has to do with the XmlTextReader.Normalization property. By default this property is set to false, which allows the encoded characters to be decoded (keep in mind that they encode just fine). When you don&#039;t explicitly create the XmlTextReader, one is created for you that has Normalization set to true.

From the &lt;a href=&quot;http://msdn.microsoft.com/en-us/library/system.xml.xmltextreader.normalization.aspx&quot; rel=&quot;nofollow&quot;&gt;MSDN &lt;/a&gt;documentation on Normalization, there is a line that states that character range checking is not performed when Normalization is false.

&lt;blockquote&gt;If Normalization is set to false, this also disables character range checking for numeric entities. As a result, character entities, such as , are allowed.&lt;/blockquote&gt;</description>
		<content:encoded><![CDATA[<p>Hi Dennis,</p>
<p>The issue has to do with the XmlTextReader.Normalization property. By default this property is set to false, which allows the encoded characters to be decoded (keep in mind that they encode just fine). When you don&#8217;t explicitly create the XmlTextReader, one is created for you that has Normalization set to true.</p>
<p>From the <a href="http://msdn.microsoft.com/en-us/library/system.xml.xmltextreader.normalization.aspx" rel="nofollow">MSDN </a>documentation on Normalization, there is a line that states that character range checking is not performed when Normalization is false.</p>
<blockquote><p>If Normalization is set to false, this also disables character range checking for numeric entities. As a result, character entities, such as , are allowed.</p></blockquote>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XML Serialization Sorrows by Dennis Gorelik</title>
		<link>http://tjoe.wordpress.com/2007/08/23/xml-serialization-sorrows/#comment-236</link>
		<dc:creator>Dennis Gorelik</dc:creator>
		<pubDate>Tue, 03 Mar 2009 18:23:36 +0000</pubDate>
		<guid isPermaLink="false">http://tjoe.wordpress.com/2007/08/23/xml-serialization-sorrows/#comment-236</guid>
		<description>Tom, thanks -- it &lt;a href=&quot;http://developmenttips.blogspot.com/2009/03/serialize-and-deserialize-objects.html&quot; rel=&quot;nofollow&quot;&gt;helped me too&lt;/a&gt;.
Did you find the reason why MS XML doesn&#039;t allow some characters to be encoded into XML?</description>
		<content:encoded><![CDATA[<p>Tom, thanks &#8212; it <a href="http://developmenttips.blogspot.com/2009/03/serialize-and-deserialize-objects.html" rel="nofollow">helped me too</a>.<br />
Did you find the reason why MS XML doesn&#8217;t allow some characters to be encoded into XML?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wanna Crash Visual Studio? by Smitty</title>
		<link>http://tjoe.wordpress.com/2007/07/04/wanna-crash-visual-studio/#comment-234</link>
		<dc:creator>Smitty</dc:creator>
		<pubDate>Fri, 13 Feb 2009 12:03:08 +0000</pubDate>
		<guid isPermaLink="false">http://tjoe.wordpress.com/2007/07/04/wanna-crash-visual-studio/#comment-234</guid>
		<description>I have a much easier method

http://www.yankeeboysoftware.com/wordpress/?p=69</description>
		<content:encoded><![CDATA[<p>I have a much easier method</p>
<p><a href="http://www.yankeeboysoftware.com/wordpress/?p=69" rel="nofollow">http://www.yankeeboysoftware.com/wordpress/?p=69</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Custom Setup Action Woes by Utyxknly</title>
		<link>http://tjoe.wordpress.com/2007/05/24/custom-setup-action-woes/#comment-232</link>
		<dc:creator>Utyxknly</dc:creator>
		<pubDate>Sat, 13 Dec 2008 16:50:14 +0000</pubDate>
		<guid isPermaLink="false">http://tjoe.wordpress.com/2007/05/24/custom-setup-action-woes/#comment-232</guid>
		<description>Thanks!,</description>
		<content:encoded><![CDATA[<p>Thanks!,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XML Serialization Sorrows by Tom Goff</title>
		<link>http://tjoe.wordpress.com/2007/08/23/xml-serialization-sorrows/#comment-223</link>
		<dc:creator>Tom Goff</dc:creator>
		<pubDate>Wed, 30 Jan 2008 13:16:27 +0000</pubDate>
		<guid isPermaLink="false">http://tjoe.wordpress.com/2007/08/23/xml-serialization-sorrows/#comment-223</guid>
		<description>Good to hear.</description>
		<content:encoded><![CDATA[<p>Good to hear.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XML Serialization Sorrows by Stilgar</title>
		<link>http://tjoe.wordpress.com/2007/08/23/xml-serialization-sorrows/#comment-222</link>
		<dc:creator>Stilgar</dc:creator>
		<pubDate>Tue, 29 Jan 2008 22:36:25 +0000</pubDate>
		<guid isPermaLink="false">http://tjoe.wordpress.com/2007/08/23/xml-serialization-sorrows/#comment-222</guid>
		<description>I just want you to know that your solution actually helped someone:)</description>
		<content:encoded><![CDATA[<p>I just want you to know that your solution actually helped someone:)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
