<?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 on: Converting rootless XmlReader to XmlDocument in .NET</title>
	<atom:link href="http://www.richnetapps.com/converting_xmlreader_to_xmldocument_in_n/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.richnetapps.com/converting_xmlreader_to_xmldocument_in_n/</link>
	<description>Internet Applications - Flash, Flex, Silverlight, JavaFX</description>
	<lastBuildDate>Fri, 02 Dec 2011 23:04:55 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: xmlreader - StartTags.com</title>
		<link>http://www.richnetapps.com/converting_xmlreader_to_xmldocument_in_n/comment-page-1/#comment-631</link>
		<dc:creator>xmlreader - StartTags.com</dc:creator>
		<pubDate>Wed, 27 Jan 2010 01:25:25 +0000</pubDate>
		<guid isPermaLink="false">#comment-631</guid>
		<description>[...] @ StartTags     Converting rootless XmlReader to XmlDocument in .NETHow to convert an XmlReader that lack the root node into a XmlDocumentXML Reader Flash panel &#124; [...]</description>
		<content:encoded><![CDATA[<p>[...] @ StartTags     Converting rootless XmlReader to XmlDocument in .NETHow to convert an XmlReader that lack the root node into a XmlDocumentXML Reader Flash panel | [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sebastian</title>
		<link>http://www.richnetapps.com/converting_xmlreader_to_xmldocument_in_n/comment-page-1/#comment-8</link>
		<dc:creator>Sebastian</dc:creator>
		<pubDate>Sun, 07 Dec 2008 14:46:37 +0000</pubDate>
		<guid isPermaLink="false">#comment-8</guid>
		<description>Great Article. I wish I had find it sooner. &lt;br /&gt;
&lt;br /&gt;
Here is another way of doing the same with an XMLDocumentFragment.&lt;br /&gt;
It works, but it could use some cleanup, specially around the ugly way I&#039;m parsing each node.&lt;br /&gt;
&lt;br /&gt;
Just go to &lt;a href=&quot;http://technobluez.blogspot.com/2008/12/vbnet-convert-rootless-xml-document-to.html&quot; rel=&quot;nofollow&quot;&gt;my blog&lt;/a&gt; look at my post.&lt;br /&gt;
&lt;br /&gt;
Thanks! Sebastian</description>
		<content:encoded><![CDATA[<p>Great Article. I wish I had find it sooner. </p>
<p>Here is another way of doing the same with an XMLDocumentFragment.<br />
It works, but it could use some cleanup, specially around the ugly way I&#8217;m parsing each node.</p>
<p>Just go to <a href="http://technobluez.blogspot.com/2008/12/vbnet-convert-rootless-xml-document-to.html" rel="nofollow">my blog</a> look at my post.</p>
<p>Thanks! Sebastian</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Wayne Scholar</title>
		<link>http://www.richnetapps.com/converting_xmlreader_to_xmldocument_in_n/comment-page-1/#comment-3</link>
		<dc:creator>Wayne Scholar</dc:creator>
		<pubDate>Wed, 06 Jun 2007 22:32:21 +0000</pubDate>
		<guid isPermaLink="false">#comment-3</guid>
		<description>Great Article.  We&#039;re using Flex and needed this badly!&lt;br /&gt;
&lt;br /&gt;
Thanks!&lt;br /&gt;
&lt;br /&gt;
Wayne</description>
		<content:encoded><![CDATA[<p>Great Article.  We&#8217;re using Flex and needed this badly!</p>
<p>Thanks!</p>
<p>Wayne</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Armand Niculescu</title>
		<link>http://www.richnetapps.com/converting_xmlreader_to_xmldocument_in_n/comment-page-1/#comment-6</link>
		<dc:creator>Armand Niculescu</dc:creator>
		<pubDate>Tue, 22 May 2007 00:48:09 +0000</pubDate>
		<guid isPermaLink="false">#comment-6</guid>
		<description>Sam, if you&#039;re using MSSQL 2005, you can specify the root node in the query itself, like this:&lt;br /&gt;
&lt;code&gt;...FOR XML AUTO, ROOT(&#039;doc&#039;)&lt;/code&gt;&lt;br /&gt;
&lt;br /&gt;
I don&#039;t know of any other way.&lt;br /&gt;
&lt;br /&gt;
</description>
		<content:encoded><![CDATA[<p>Sam, if you&#8217;re using MSSQL 2005, you can specify the root node in the query itself, like this:<br />
<code>...FOR XML AUTO, ROOT('doc')</code></p>
<p>I don&#8217;t know of any other way.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sam sinfield</title>
		<link>http://www.richnetapps.com/converting_xmlreader_to_xmldocument_in_n/comment-page-1/#comment-7</link>
		<dc:creator>sam sinfield</dc:creator>
		<pubDate>Mon, 21 May 2007 21:28:50 +0000</pubDate>
		<guid isPermaLink="false">#comment-7</guid>
		<description>This looked to be exactly what I needed for converting data from an sql server db to a xmldoc. Unfortunately, I&#039;m using .net 1.1 and don&#039;t have the option to upgrade and this has only been added in .net 2.0. Is there any other, elegant way of doing this in 1.1 without having to sequentially read through the XmlReader</description>
		<content:encoded><![CDATA[<p>This looked to be exactly what I needed for converting data from an sql server db to a xmldoc. Unfortunately, I&#8217;m using .net 1.1 and don&#8217;t have the option to upgrade and this has only been added in .net 2.0. Is there any other, elegant way of doing this in 1.1 without having to sequentially read through the XmlReader</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Armand Niculescu</title>
		<link>http://www.richnetapps.com/converting_xmlreader_to_xmldocument_in_n/comment-page-1/#comment-5</link>
		<dc:creator>Armand Niculescu</dc:creator>
		<pubDate>Thu, 15 Feb 2007 19:16:50 +0000</pubDate>
		<guid isPermaLink="false">#comment-5</guid>
		<description>There was some poor wording on my part.&lt;br /&gt;
It should have read &quot;There&#039;s no straightforward way to convert a XmlReader &lt;em&gt;without a root node&lt;/em&gt; to a XmlDocument&quot;.</description>
		<content:encoded><![CDATA[<p>There was some poor wording on my part.<br />
It should have read &#8220;There&#8217;s no straightforward way to convert a XmlReader <em>without a root node</em> to a XmlDocument&#8221;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: J</title>
		<link>http://www.richnetapps.com/converting_xmlreader_to_xmldocument_in_n/comment-page-1/#comment-4</link>
		<dc:creator>J</dc:creator>
		<pubDate>Tue, 13 Feb 2007 00:29:50 +0000</pubDate>
		<guid isPermaLink="false">#comment-4</guid>
		<description>To quote you &quot;There&#039;s no straightforward way to convert a XmlReader to a XmlDocument - most of the code samples I&#039;ve seen simply read sequentially through the XmlReader, appending data to a string. Obviously this is inneficient.&quot;.&lt;br /&gt;
&lt;br /&gt;
Isn&#039;t much easier to use the &quot;Load&quot; method on the XmlDocument class? One of the 4 overloads accept an XmlReader as aparameter.&lt;br /&gt;
&lt;br /&gt;
</description>
		<content:encoded><![CDATA[<p>To quote you &#8220;There&#8217;s no straightforward way to convert a XmlReader to a XmlDocument &#8211; most of the code samples I&#8217;ve seen simply read sequentially through the XmlReader, appending data to a string. Obviously this is inneficient.&#8221;.</p>
<p>Isn&#8217;t much easier to use the &#8220;Load&#8221; method on the XmlDocument class? One of the 4 overloads accept an XmlReader as aparameter.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic (Feed is rejected)
Page Caching using disk: enhanced

Served from: www.richnetapps.com @ 2012-02-07 15:08:02 -->
