<?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: Simple XML Parser Namespace support</title>
	<atom:link href="http://www.protung.ro/2009/10/simple-xml-parser-namespace-support/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.protung.ro/2009/10/simple-xml-parser-namespace-support/</link>
	<description></description>
	<lastBuildDate>Wed, 10 Nov 2010 17:25:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Gabri</title>
		<link>http://www.protung.ro/2009/10/simple-xml-parser-namespace-support/comment-page-1/#comment-2016</link>
		<dc:creator>Gabri</dc:creator>
		<pubDate>Fri, 20 Aug 2010 08:56:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.protung.ro/?p=241#comment-2016</guid>
		<description>Thank you very much! You saved me!  :)
(and sorry for the proliferation of &quot;wrong&quot; comments)</description>
		<content:encoded><![CDATA[<p>Thank you very much! You saved me!  <img src='http://www.protung.ro/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
(and sorry for the proliferation of &#8220;wrong&#8221; comments)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dragos</title>
		<link>http://www.protung.ro/2009/10/simple-xml-parser-namespace-support/comment-page-1/#comment-2014</link>
		<dc:creator>Dragos</dc:creator>
		<pubDate>Fri, 20 Aug 2010 08:47:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.protung.ro/?p=241#comment-2014</guid>
		<description>you have to escape the &lt;code&gt;&amp;&lt;/code&gt;

for example:
&lt;code&gt;
&lt;node type=&#039;&#xe0;&#039;&gt;&amp;#xe0&lt;/node&gt;
&lt;/code&gt;

the same applies for node values if you do not escape it with CDATA (it&#039;s better with CDATA anyway)</description>
		<content:encoded><![CDATA[<p>you have to escape the <code>&amp;</code></p>
<p>for example:<br />
<code><br />
&lt;node type='&amp;amp;#xe0;'&gt;&amp;amp;#xe0&lt;/node&gt;<br />
</code></p>
<p>the same applies for node values if you do not escape it with CDATA (it&#8217;s better with CDATA anyway)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gabri</title>
		<link>http://www.protung.ro/2009/10/simple-xml-parser-namespace-support/comment-page-1/#comment-2012</link>
		<dc:creator>Gabri</dc:creator>
		<pubDate>Fri, 20 Aug 2010 08:33:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.protung.ro/?p=241#comment-2012</guid>
		<description>Thank you, it works for text inside xml nodes. What doesn&#039;t yet work is for hexa/decimal entities inside an attribute (ie.: &lt;color TEXT=&quot;an entity &quot;&gt;#333333). In this case surrounding with a CDATA brakes the parsing process.
I think the only solution is anyway to pre process the xml file and post process the output. Thank you anyway Dragos</description>
		<content:encoded><![CDATA[<p>Thank you, it works for text inside xml nodes. What doesn&#8217;t yet work is for hexa/decimal entities inside an attribute (ie.: &lt;color TEXT=&quot;an entity &#8220;&gt;#333333). In this case surrounding with a CDATA brakes the parsing process.<br />
I think the only solution is anyway to pre process the xml file and post process the output. Thank you anyway Dragos</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dragos</title>
		<link>http://www.protung.ro/2009/10/simple-xml-parser-namespace-support/comment-page-1/#comment-2011</link>
		<dc:creator>Dragos</dc:creator>
		<pubDate>Thu, 19 Aug 2010 12:57:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.protung.ro/?p=241#comment-2011</guid>
		<description>Make sure you surround the text in CDATA

So if you have something like:
&lt;code&gt;&lt;node&gt;&#xe0;&lt;/node&gt;&lt;/code&gt;

make it like:
&lt;code&gt;&lt;node&gt;&lt; ![CDATA[&#xe0;]]&gt;&lt;/node&gt;&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Make sure you surround the text in CDATA</p>
<p>So if you have something like:<br />
<code><node>&amp;#xe0;</node></code></p>
<p>make it like:<br />
<code><node>< ![CDATA[&amp;#xe0;]]></node></code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gabri</title>
		<link>http://www.protung.ro/2009/10/simple-xml-parser-namespace-support/comment-page-1/#comment-2008</link>
		<dc:creator>Gabri</dc:creator>
		<pubDate>Tue, 17 Aug 2010 10:00:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.protung.ro/?p=241#comment-2008</guid>
		<description>I&#039;m having some headaches with parsing xml file, the problem regards xml with hex entities inside of the xml file (i.e: &#xe0; and so on), I cannot understand why but the result of parsing outputs strange chars and not preserve these entities.
I found your classes and tried to put in example.xml some hex entities ...but I have the same results as I had before.
I tried a lot but I cannot find a solution, do you have one?</description>
		<content:encoded><![CDATA[<p>I&#8217;m having some headaches with parsing xml file, the problem regards xml with hex entities inside of the xml file (i.e: &#xe0; and so on), I cannot understand why but the result of parsing outputs strange chars and not preserve these entities.<br />
I found your classes and tried to put in example.xml some hex entities &#8230;but I have the same results as I had before.<br />
I tried a lot but I cannot find a solution, do you have one?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gael</title>
		<link>http://www.protung.ro/2009/10/simple-xml-parser-namespace-support/comment-page-1/#comment-1945</link>
		<dc:creator>gael</dc:creator>
		<pubDate>Wed, 31 Mar 2010 08:44:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.protung.ro/?p=241#comment-1945</guid>
		<description>Really good job !
Tested with huge file - around 5 Mo, 4000 entries : less than 1 sec to parse it 8-)</description>
		<content:encoded><![CDATA[<p>Really good job !<br />
Tested with huge file &#8211; around 5 Mo, 4000 entries : less than 1 sec to parse it <img src='http://www.protung.ro/wp-includes/images/smilies/icon_cool.gif' alt='8-)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

