Hi All ....<br><br>I have been trying to work with XML::Twig lately to parse an xml file.<br><br>I just want to dump every element/Tag of the xml file.  But my while loops seems to be doing something weird or its the way that XML::Twig is working, not sure, but I get duplicate information from the original XML file.  Its like it is running part of the while loop twice.<br>

<br>I know there are other modules that I could use but I am using XML::Twig for other parts of what will be a larger program and I want the chunking that XML:Twig allows.<br><br>Any help would be greatly appreciated.<br>

<br>Here is my sample code:<br><br>#!/usr/bin/perl -w<br><br>require XML::Twig;<br><br>sub info {<br>        my ($xml, $info) = @_;<br>        my $elt = $info;<br>        while ($elt= $elt-&gt;next_elt($info) )<br>        {<br>

                $elt-&gt;set_remove_cdata(1);<br>                $elt-&gt;set_pretty_print(&quot;record&quot;);  # print one field per line<br>                printf &quot;%s\n&quot;, $elt-&gt;sprint;<br>        }<br>}<br>

<br>$xml = new XML::Twig(<br>        TwigHandlers =&gt; {<br>                XML_DIZ_INFO       =&gt; \&amp;info,<br>        }<br>);<br><br># Parse the XML<br>$xml-&gt;parsefile(&#39;sample.xml&#39;);<br><br>************************<br>

<br>sample.xml<br>-----------------<br>&lt;?xml version=&quot;1.0&quot; ?&gt;<br>&lt;XML_DIZ_INFO&gt;<br>        &lt;MASTER_PAD_VERSION_INFO&gt;<br>                &lt;MASTER_PAD_VERSION&gt;1.0&lt;/MASTER_PAD_VERSION&gt;<br>

                &lt;MASTER_PAD_EDITOR&gt;Master Editor here&lt;/MASTER_PAD_EDITOR&gt;<br>                &lt;MASTER_PAD_INFO&gt;information would go here &lt;/MASTER_PAD_INFO&gt;<br>        &lt;/MASTER_PAD_VERSION_INFO&gt;<br>

        &lt;Company_Info&gt;<br>                &lt;Company_Name&gt;Moyea Software Co., Ltd.&lt;/Company_Name&gt;<br>                &lt;Country&gt;China&lt;/Country&gt;<br>                &lt;Company_WebSite_URL&gt;<a href="http://www.whatever.com">http://www.whatever.com</a>&lt;/Company_WebSite_URL&gt;<br>

                &lt;Contact_Info&gt;<br>                        &lt;Author_First_Name&gt;Bob&lt;/Author_First_Name&gt;<br>                        &lt;Author_Last_Name&gt;King&lt;/Author_Last_Name&gt;<br>                        &lt;Author_Email&gt;<a href="mailto:product@moyea.com">product@moyea.com</a>&lt;/Author_Email&gt;<br>

                &lt;/Contact_Info&gt;<br>        &lt;/Company_Info&gt;<br>&lt;/XML_DIZ_INFO&gt;<br><br>============================================<br>The following is the output I get.  After the closing &lt;/Company_Info&gt; it should stop.<br>

============================================<br><br>  &lt;MASTER_PAD_VERSION_INFO&gt;<br>    &lt;MASTER_PAD_VERSION&gt;1.0&lt;/MASTER_PAD_VERSION&gt;<br>    &lt;MASTER_PAD_EDITOR&gt;Master Editor here&lt;/MASTER_PAD_EDITOR&gt;<br>

    &lt;MASTER_PAD_INFO&gt;information would go here &lt;/MASTER_PAD_INFO&gt;<br>  &lt;/MASTER_PAD_VERSION_INFO&gt;<br><br>    &lt;MASTER_PAD_VERSION&gt;1.0&lt;/MASTER_PAD_VERSION&gt;<br>1.0<br><br>    &lt;MASTER_PAD_EDITOR&gt;Master Editor here&lt;/MASTER_PAD_EDITOR&gt;<br>

Master Editor here<br><br>    &lt;MASTER_PAD_INFO&gt;information would go here &lt;/MASTER_PAD_INFO&gt;<br>information would go here <br><br>  &lt;Company_Info&gt;<br>    &lt;Company_Name&gt;Moyea Software Co., Ltd.&lt;/Company_Name&gt;<br>

    &lt;Country&gt;China&lt;/Country&gt;<br>    &lt;Company_WebSite_URL&gt;<a href="http://www.whatever.com">http://www.whatever.com</a>&lt;/Company_WebSite_URL&gt;<br>    &lt;Contact_Info&gt;<br>      &lt;Author_First_Name&gt;Bob&lt;/Author_First_Name&gt;<br>

      &lt;Author_Last_Name&gt;King&lt;/Author_Last_Name&gt;<br>      &lt;Author_Email&gt;<a href="mailto:product@moyea.com">product@moyea.com</a>&lt;/Author_Email&gt;<br>    &lt;/Contact_Info&gt;<br>  &lt;/Company_Info&gt;<br>

<br>    &lt;Company_Name&gt;Moyea Software Co., Ltd.&lt;/Company_Name&gt;<br>Moyea Software Co., Ltd.<br><br>    &lt;Country&gt;China&lt;/Country&gt;<br>China<br><br>    &lt;Company_WebSite_URL&gt;<a href="http://www.whatever.com">http://www.whatever.com</a>&lt;/Company_WebSite_URL&gt;<br>

<a href="http://www.whatever.com">http://www.whatever.com</a><br><br>    &lt;Contact_Info&gt;<br>      &lt;Author_First_Name&gt;Bob&lt;/Author_First_Name&gt;<br>      &lt;Author_Last_Name&gt;King&lt;/Author_Last_Name&gt;<br>

      &lt;Author_Email&gt;<a href="mailto:product@moyea.com">product@moyea.com</a>&lt;/Author_Email&gt;<br>    &lt;/Contact_Info&gt;<br><br>      &lt;Author_First_Name&gt;Bob&lt;/Author_First_Name&gt;<br>Bob<br><br>      &lt;Author_Last_Name&gt;King&lt;/Author_Last_Name&gt;<br>

King<br><br>      &lt;Author_Email&gt;<a href="mailto:product@moyea.com">product@moyea.com</a>&lt;/Author_Email&gt;<br><a href="mailto:product@moyea.com">product@moyea.com</a><br><br><br>