<?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/"
		>
<channel>
	<title>Comments for Thomas Johansen&#039;s Blog</title>
	<atom:link href="http://thomasjo.com/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://thomasjo.com/blog</link>
	<description>A monologue on the creation of highly opinionated software</description>
	<lastBuildDate>Sun, 01 Aug 2010 21:25:21 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>Comment on XMLDSIG in the .NET framework by thomasjo</title>
		<link>http://thomasjo.com/blog/archive/xmldsig-in-the-net-framework/#comment-2170</link>
		<dc:creator>thomasjo</dc:creator>
		<pubDate>Sun, 01 Aug 2010 21:25:21 +0000</pubDate>
		<guid isPermaLink="false">http://thomasjo.com/blog/archive/xmldsig-in-the-net-framework/#comment-2170</guid>
		<description>Did you remember to change the following line as well?
&lt;code&gt;signedXml.SignedInfo.CanonicalizationMethod = SignedXml.XmlDsigExcC14NTransformUrl;&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Did you remember to change the following line as well?<br />
<code>signedXml.SignedInfo.CanonicalizationMethod = SignedXml.XmlDsigExcC14NTransformUrl;</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XMLDSIG in the .NET framework by Rick Beerendonk</title>
		<link>http://thomasjo.com/blog/archive/xmldsig-in-the-net-framework/#comment-2127</link>
		<dc:creator>Rick Beerendonk</dc:creator>
		<pubDate>Tue, 20 Jul 2010 09:17:23 +0000</pubDate>
		<guid isPermaLink="false">http://thomasjo.com/blog/archive/xmldsig-in-the-net-framework/#comment-2127</guid>
		<description>Why is it that if I cange &quot;signatureReference.AddTransform(new XmlDsigExcC14NTransform());&quot; into &quot;signatureReference.AddTransform(new XmlDsigC14NWithCommentsTransform());&quot; that &quot;signedXml.CheckSignature(certificate, true)&quot; fails? I cannot get my head around that.</description>
		<content:encoded><![CDATA[<p>Why is it that if I cange &#8220;signatureReference.AddTransform(new XmlDsigExcC14NTransform());&#8221; into &#8220;signatureReference.AddTransform(new XmlDsigC14NWithCommentsTransform());&#8221; that &#8220;signedXml.CheckSignature(certificate, true)&#8221; fails? I cannot get my head around that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A pessimistic HTML sanitizer by Dragos Durlut</title>
		<link>http://thomasjo.com/blog/archive/a-pessimistic-html-sanitizer/#comment-2057</link>
		<dc:creator>Dragos Durlut</dc:creator>
		<pubDate>Thu, 24 Jun 2010 06:04:20 +0000</pubDate>
		<guid isPermaLink="false"></guid>
		<description>Hello,
That is a very, very bery good class. Saved my behind.
Thanks a lot!</description>
		<content:encoded><![CDATA[<p>Hello,<br />
That is a very, very bery good class. Saved my behind.<br />
Thanks a lot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XMLDSIG in the .NET framework by thomasjo</title>
		<link>http://thomasjo.com/blog/archive/xmldsig-in-the-net-framework/#comment-344</link>
		<dc:creator>thomasjo</dc:creator>
		<pubDate>Thu, 24 Sep 2009 13:28:54 +0000</pubDate>
		<guid isPermaLink="false">http://thomasjo.com/blog/archive/xmldsig-in-the-net-framework/#comment-344</guid>
		<description>Good suggestion Joel, and something I hadn&#039;t thought of.</description>
		<content:encoded><![CDATA[<p>Good suggestion Joel, and something I hadn&#8217;t thought of.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XMLDSIG in the .NET framework by Joel</title>
		<link>http://thomasjo.com/blog/archive/xmldsig-in-the-net-framework/#comment-336</link>
		<dc:creator>Joel</dc:creator>
		<pubDate>Wed, 23 Sep 2009 17:55:04 +0000</pubDate>
		<guid isPermaLink="false">http://thomasjo.com/blog/archive/xmldsig-in-the-net-framework/#comment-336</guid>
		<description>I think that you can transform an XDocument into an XmlDocument more efficiently by creating an XmlReader over the XDocument and loading that, rather than converting the XDocument to a string and parsing it. In my case, I have a ToXmlDocument extension method I added to XDocument.

var doc = new XmlDocument();
doc.Load(xdoc.CreateReader());

The reverse, a ToXDocument extension method I added to XmlDocument, looks like this:

return XDocument.Load(new XmlNodeReader(doc));</description>
		<content:encoded><![CDATA[<p>I think that you can transform an XDocument into an XmlDocument more efficiently by creating an XmlReader over the XDocument and loading that, rather than converting the XDocument to a string and parsing it. In my case, I have a ToXmlDocument extension method I added to XDocument.</p>
<p>var doc = new XmlDocument();<br />
doc.Load(xdoc.CreateReader());</p>
<p>The reverse, a ToXDocument extension method I added to XmlDocument, looks like this:</p>
<p>return XDocument.Load(new XmlNodeReader(doc));</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on XMLDSIG in the .NET framework by Jostein</title>
		<link>http://thomasjo.com/blog/archive/xmldsig-in-the-net-framework/#comment-61</link>
		<dc:creator>Jostein</dc:creator>
		<pubDate>Wed, 05 Aug 2009 07:56:05 +0000</pubDate>
		<guid isPermaLink="false">http://thomasjo.com/blog/archive/xmldsig-in-the-net-framework/#comment-61</guid>
		<description>Thanks for doing the hard work, in case I ever need it! :)</description>
		<content:encoded><![CDATA[<p>Thanks for doing the hard work, in case I ever need it! :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
