<?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 on: Generate XML data dynamically in Flex.</title>
	<atom:link href="http://flexonblog.wordpress.com/2008/02/04/generate-xml-data-dynamically-in-flex/feed/" rel="self" type="application/rss+xml" />
	<link>http://flexonblog.wordpress.com/2008/02/04/generate-xml-data-dynamically-in-flex/</link>
	<description></description>
	<lastBuildDate>Wed, 23 Dec 2009 06:53:03 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Dileep Kumar</title>
		<link>http://flexonblog.wordpress.com/2008/02/04/generate-xml-data-dynamically-in-flex/#comment-717</link>
		<dc:creator>Dileep Kumar</dc:creator>
		<pubDate>Tue, 29 Sep 2009 08:01:57 +0000</pubDate>
		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=106#comment-717</guid>
		<description>Hi Kumar,
I am using the same code what you are using for generating xml list.But the problem with me is that I have to generate bulk amount of data.I am running a for loop and inside that xml is getting generated based on the length of the array.
So for bulk amount of data its taking too much amount of time and application is getting hanged.
Is there any alternate way to generate xml in a fast way?Please tell me .</description>
		<content:encoded><![CDATA[<p>Hi Kumar,<br />
I am using the same code what you are using for generating xml list.But the problem with me is that I have to generate bulk amount of data.I am running a for loop and inside that xml is getting generated based on the length of the array.<br />
So for bulk amount of data its taking too much amount of time and application is getting hanged.<br />
Is there any alternate way to generate xml in a fast way?Please tell me .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mayur</title>
		<link>http://flexonblog.wordpress.com/2008/02/04/generate-xml-data-dynamically-in-flex/#comment-656</link>
		<dc:creator>mayur</dc:creator>
		<pubDate>Fri, 31 Jul 2009 14:27:16 +0000</pubDate>
		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=106#comment-656</guid>
		<description>Thanks.
I got hit.
That makes my work done.

Mayur</description>
		<content:encoded><![CDATA[<p>Thanks.<br />
I got hit.<br />
That makes my work done.</p>
<p>Mayur</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kumargandhi</title>
		<link>http://flexonblog.wordpress.com/2008/02/04/generate-xml-data-dynamically-in-flex/#comment-636</link>
		<dc:creator>kumargandhi</dc:creator>
		<pubDate>Fri, 12 Jun 2009 06:09:18 +0000</pubDate>
		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=106#comment-636</guid>
		<description>Hi Ravindra,

plz follow the link below about your question, and note the second comment on the post.
http://flexonblog.wordpress.com/2008/09/30/generate-xml-data-dynamically-in-flex-reloaded/

regards,
kumar.</description>
		<content:encoded><![CDATA[<p>Hi Ravindra,</p>
<p>plz follow the link below about your question, and note the second comment on the post.<br />
<a href="http://flexonblog.wordpress.com/2008/09/30/generate-xml-data-dynamically-in-flex-reloaded/" rel="nofollow">http://flexonblog.wordpress.com/2008/09/30/generate-xml-data-dynamically-in-flex-reloaded/</a></p>
<p>regards,<br />
kumar.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ravindra</title>
		<link>http://flexonblog.wordpress.com/2008/02/04/generate-xml-data-dynamically-in-flex/#comment-627</link>
		<dc:creator>Ravindra</dc:creator>
		<pubDate>Tue, 09 Jun 2009 14:18:59 +0000</pubDate>
		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=106#comment-627</guid>
		<description>hi,

i  wanted to write data in a exisiting xml file.

Please suggets</description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>i  wanted to write data in a exisiting xml file.</p>
<p>Please suggets</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: raj</title>
		<link>http://flexonblog.wordpress.com/2008/02/04/generate-xml-data-dynamically-in-flex/#comment-564</link>
		<dc:creator>raj</dc:creator>
		<pubDate>Mon, 11 May 2009 11:13:43 +0000</pubDate>
		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=106#comment-564</guid>
		<description>


        &lt;![CDATA[
                import mx.controls.TextArea;
                import mx.controls.Text;
                import mx.controls.Alert;
private function createXML(): void
{
var xm:XML = ;
var nodeName:String = &quot;EMPLOYEENAME&quot;;
var nodevaule:Text=new Text();
nodevaule.text=&quot;&amp;&quot;;
var xmlList:XML = {nodevaule.text};
xm.appendChild(xmlList);
Alert.show(xm.toXMLString());
}

        ]]&gt;

</description>
		<content:encoded><![CDATA[<p>&lt;![CDATA[<br />
                import mx.controls.TextArea;<br />
                import mx.controls.Text;<br />
                import mx.controls.Alert;<br />
private function createXML(): void<br />
{<br />
var xm:XML = ;<br />
var nodeName:String = "EMPLOYEENAME";<br />
var nodevaule:Text=new Text();<br />
nodevaule.text="&amp;";<br />
var xmlList:XML = {nodevaule.text};<br />
xm.appendChild(xmlList);<br />
Alert.show(xm.toXMLString());<br />
}</p>
<p>        ]]&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: raj</title>
		<link>http://flexonblog.wordpress.com/2008/02/04/generate-xml-data-dynamically-in-flex/#comment-559</link>
		<dc:creator>raj</dc:creator>
		<pubDate>Fri, 08 May 2009 09:06:41 +0000</pubDate>
		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=106#comment-559</guid>
		<description>How to add ampercent in xml node.......
this is the sample code.......
here i am giving &amp; but its displaying as &amp; 




        &lt;![CDATA[
                import mx.controls.TextArea;
                import mx.controls.Text;
                import mx.controls.Alert;
private function createXML(): void
{
var xm:XML = ;
var nodeName:String = &quot;EMPLOYEENAME&quot;;
var nodevaule:Text=new Text();
nodevaule.text=&quot;&amp;&quot;;
var xmlList:XML = {nodevaule.text};
xm.appendChild(xmlList);
Alert.show(xm.toXMLString());
}

        ]]&gt;

</description>
		<content:encoded><![CDATA[<p>How to add ampercent in xml node&#8230;&#8230;.<br />
this is the sample code&#8230;&#8230;.<br />
here i am giving &amp; but its displaying as &amp;amp; </p>
<p>        &lt;![CDATA[<br />
                import mx.controls.TextArea;<br />
                import mx.controls.Text;<br />
                import mx.controls.Alert;<br />
private function createXML(): void<br />
{<br />
var xm:XML = ;<br />
var nodeName:String = "EMPLOYEENAME";<br />
var nodevaule:Text=new Text();<br />
nodevaule.text="&amp;";<br />
var xmlList:XML = {nodevaule.text};<br />
xm.appendChild(xmlList);<br />
Alert.show(xm.toXMLString());<br />
}</p>
<p>        ]]&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kumargandhi</title>
		<link>http://flexonblog.wordpress.com/2008/02/04/generate-xml-data-dynamically-in-flex/#comment-553</link>
		<dc:creator>kumargandhi</dc:creator>
		<pubDate>Wed, 06 May 2009 13:45:05 +0000</pubDate>
		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=106#comment-553</guid>
		<description>Hi,

It will take that character, i don&#039;t understand your problem, can you be clear.

regards,
kumar.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>It will take that character, i don&#8217;t understand your problem, can you be clear.</p>
<p>regards,<br />
kumar.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: raj</title>
		<link>http://flexonblog.wordpress.com/2008/02/04/generate-xml-data-dynamically-in-flex/#comment-552</link>
		<dc:creator>raj</dc:creator>
		<pubDate>Wed, 06 May 2009 12:01:23 +0000</pubDate>
		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=106#comment-552</guid>
		<description>how to display &amp; there......

i tried with &amp; but its not working.............</description>
		<content:encoded><![CDATA[<p>how to display &amp; there&#8230;&#8230;</p>
<p>i tried with &amp; but its not working&#8230;&#8230;&#8230;&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kumargandhi</title>
		<link>http://flexonblog.wordpress.com/2008/02/04/generate-xml-data-dynamically-in-flex/#comment-369</link>
		<dc:creator>kumargandhi</dc:creator>
		<pubDate>Tue, 02 Dec 2008 15:11:36 +0000</pubDate>
		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=106#comment-369</guid>
		<description>There are some methods in the XML class you can use those, here to get XML there is one method called toXMLString(), this will give out the XML in String format.try it.
or use the continuation post for this post, 

http://flexonblog.wordpress.com/2008/09/30/generate-xml-data-dynamically-in-flex-reloaded/

regards,
kumar.</description>
		<content:encoded><![CDATA[<p>There are some methods in the XML class you can use those, here to get XML there is one method called toXMLString(), this will give out the XML in String format.try it.<br />
or use the continuation post for this post, </p>
<p><a href="http://flexonblog.wordpress.com/2008/09/30/generate-xml-data-dynamically-in-flex-reloaded/" rel="nofollow">http://flexonblog.wordpress.com/2008/09/30/generate-xml-data-dynamically-in-flex-reloaded/</a></p>
<p>regards,<br />
kumar.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jagdish</title>
		<link>http://flexonblog.wordpress.com/2008/02/04/generate-xml-data-dynamically-in-flex/#comment-367</link>
		<dc:creator>Jagdish</dc:creator>
		<pubDate>Tue, 02 Dec 2008 07:10:30 +0000</pubDate>
		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=106#comment-367</guid>
		<description>Want dynyamic XML</description>
		<content:encoded><![CDATA[<p>Want dynyamic XML</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Generate XML Data dynamically in Flex :: Reloaded &#171; flex on blog - by kumar</title>
		<link>http://flexonblog.wordpress.com/2008/02/04/generate-xml-data-dynamically-in-flex/#comment-318</link>
		<dc:creator>Generate XML Data dynamically in Flex :: Reloaded &#171; flex on blog - by kumar</dc:creator>
		<pubDate>Tue, 30 Sep 2008 15:00:36 +0000</pubDate>
		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=106#comment-318</guid>
		<description>[...] XML Data dynamically in Flex ::&#160;Reloaded  Few months back i made a post on this &#8220;Generate XML Data dynamically in Flex&#8221; and it needed some improvements. so here i am with the improvements. [ As few readers suggested [...]</description>
		<content:encoded><![CDATA[<p>[...] XML Data dynamically in Flex ::&nbsp;Reloaded  Few months back i made a post on this &#8220;Generate XML Data dynamically in Flex&#8221; and it needed some improvements. so here i am with the improvements. [ As few readers suggested [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kumargandhi</title>
		<link>http://flexonblog.wordpress.com/2008/02/04/generate-xml-data-dynamically-in-flex/#comment-294</link>
		<dc:creator>kumargandhi</dc:creator>
		<pubDate>Tue, 19 Aug 2008 17:56:35 +0000</pubDate>
		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=106#comment-294</guid>
		<description>Hi,
I will come up with a post on this soon.

regards,
kumar</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I will come up with a post on this soon.</p>
<p>regards,<br />
kumar</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Balaji</title>
		<link>http://flexonblog.wordpress.com/2008/02/04/generate-xml-data-dynamically-in-flex/#comment-293</link>
		<dc:creator>Balaji</dc:creator>
		<pubDate>Mon, 18 Aug 2008 14:32:09 +0000</pubDate>
		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=106#comment-293</guid>
		<description>Hi Kumar, 
              Can you tell me how to bind the data of xml in the class file. 
i mean to say i will be creating the class file there i need to get the xml data for manipulating.

Let me know if u have any idea about this
Thanks and Regards
Balaji</description>
		<content:encoded><![CDATA[<p>Hi Kumar,<br />
              Can you tell me how to bind the data of xml in the class file.<br />
i mean to say i will be creating the class file there i need to get the xml data for manipulating.</p>
<p>Let me know if u have any idea about this<br />
Thanks and Regards<br />
Balaji</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kumargandhi</title>
		<link>http://flexonblog.wordpress.com/2008/02/04/generate-xml-data-dynamically-in-flex/#comment-201</link>
		<dc:creator>kumargandhi</dc:creator>
		<pubDate>Tue, 22 Apr 2008 11:31:39 +0000</pubDate>
		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=106#comment-201</guid>
		<description>Hello Meena,

For this we got to use the some classes in flash.xml package, i can give another example for you.

            [Bindable]
            public var xml:XML
                        
            private function createXML():void

            {
                try 
                {
                    xml = 
                        
                            {content.text}
                        ;
                }
                catch (e:TypeError)

                {
                    xml = Fill the form to see the tag here.;
                }

            }

by this also we can generate dynamic xml data,By using XML class.
here tagName , attributeName are my TextInput Components.


regards,
kumar.</description>
		<content:encoded><![CDATA[<p>Hello Meena,</p>
<p>For this we got to use the some classes in flash.xml package, i can give another example for you.</p>
<p>            [Bindable]<br />
            public var xml:XML</p>
<p>            private function createXML():void</p>
<p>            {<br />
                try<br />
                {<br />
                    xml = </p>
<p>                            {content.text}<br />
                        ;<br />
                }<br />
                catch (e:TypeError)</p>
<p>                {<br />
                    xml = Fill the form to see the tag here.;<br />
                }</p>
<p>            }</p>
<p>by this also we can generate dynamic xml data,By using XML class.<br />
here tagName , attributeName are my TextInput Components.</p>
<p>regards,<br />
kumar.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Meena</title>
		<link>http://flexonblog.wordpress.com/2008/02/04/generate-xml-data-dynamically-in-flex/#comment-184</link>
		<dc:creator>Meena</dc:creator>
		<pubDate>Wed, 09 Apr 2008 18:32:26 +0000</pubDate>
		<guid isPermaLink="false">http://flexonblog.wordpress.com/?p=106#comment-184</guid>
		<description>Hi Kumar,

Thanks for the info,
how can I generate XML like this:


       
         
         



Thanks for any help.</description>
		<content:encoded><![CDATA[<p>Hi Kumar,</p>
<p>Thanks for the info,<br />
how can I generate XML like this:</p>
<p>Thanks for any help.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
