<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	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>Neoflex's Weblog</title>
	<atom:link href="http://neoflex.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://neoflex.wordpress.com</link>
	<description>Just another Flex weblog</description>
	<lastBuildDate>Wed, 13 Apr 2011 04:49:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='neoflex.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Neoflex's Weblog</title>
		<link>http://neoflex.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://neoflex.wordpress.com/osd.xml" title="Neoflex&#039;s Weblog" />
	<atom:link rel='hub' href='http://neoflex.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Sending data from flex to JSP using HTTPservice</title>
		<link>http://neoflex.wordpress.com/2007/11/20/sending-data-from-flex-to-jsp-using-httpservice/</link>
		<comments>http://neoflex.wordpress.com/2007/11/20/sending-data-from-flex-to-jsp-using-httpservice/#comments</comments>
		<pubDate>Tue, 20 Nov 2007 07:04:13 +0000</pubDate>
		<dc:creator>neoflex</dc:creator>
				<category><![CDATA[AS3]]></category>
		<category><![CDATA[Flex]]></category>
		<category><![CDATA[flex httpservice]]></category>
		<category><![CDATA[flex with jsp]]></category>
		<category><![CDATA[sending and receiving data from jsp]]></category>
		<category><![CDATA[sending and receiving responce from jsp]]></category>
		<category><![CDATA[Sending data from flex to JSP using HTTPservice]]></category>

		<guid isPermaLink="false">http://neoflex.wordpress.com/2007/11/20/sending-data-from-flex-to-jsp-using-httpservice/</guid>
		<description><![CDATA[Here is an example to post data from flex to JSP using httpservice. We’ll put a simple form under the data grid above to enter the data about the new employee and Pressing the Add Employee button will submit the entered data to the JSP, which will attach them to existing employees and return back [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neoflex.wordpress.com&amp;blog=1658593&amp;post=8&amp;subd=neoflex&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="left">Here is an example to post data from flex to JSP using httpservice. We’ll put a simple form under the data grid above to enter the data about the new employee and Pressing the Add Employee button will submit the entered data to the JSP, which will attach them to existing employees and return back so the data grid can be repopulated to include the newly inserted employee.</p>
<p><strong>Here is code for Employee entry and Data grid.</strong></p>
<p><font size="2">&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;utf-8&#8243;?&gt;<br />
&lt;mx:Application xmlns:mx=&#8221;http://www.adobe.com/2006/mxml&#8221; layout=&#8221;absolute&#8221; applicationComplete=&#8221;employees.send()&#8221;&gt;</font><font size="2">&lt;mx:Script&gt;<br />
&lt;![CDATA[<br />
import mx.events.ValidationResultEvent;<br />
import mx.controls.Alert;</font><font size="2">private function validateEmpName():void{<br />
if (empNameValidator.validate().type == ValidationResultEvent.VALID)<br />
{<br />
submitForm();<br />
}<br />
else<br />
{<br />
Alert.show("Employee name can not be blank");<br />
}<br />
}</p>
<p>private function submitForm():void<br />
{<br />
employees.cancel();<br />
employees.send(employeeModel);<br />
}</font><font size="2"></p>
<p align="left">&nbsp;</p>
<p align="left">private function onResult(event:Event):void<br />
{<br />
return;<br />
}<br />
]]&gt;<br />
&lt;/mx:Script&gt;</p>
<p align="left">&nbsp;</p>
<p align="left">&lt;mx:Model id=&#8221;employeeModel&#8221;&gt;<br />
&lt;root&gt;<br />
&lt;empName&gt;{empName.text}&lt;/empName&gt;<br />
&lt;age&gt;{age.text}&lt;/age&gt;<br />
&lt;skills&gt;{skills.text}&lt;/skills&gt;<br />
&lt;/root&gt;<br />
&lt;/mx:Model&gt;</p>
<p align="left">&nbsp;</p>
<p align="left">&lt;mx:HTTPService id=&#8221;employees&#8221; useProxy=&#8221;false&#8221; method=&#8221;POST&#8221; url=&#8221;employee.jsp&#8221;/&gt;<br />
&lt;mx:DataGrid dataProvider=&#8221;{employees.lastResult.people.person}&#8221; width=&#8221;50%&#8221;&gt;<br />
&lt;mx:columns&gt;<br />
&lt;mx:DataGridColumn dataField=&#8221;name&#8221; headerText=&#8221;Name&#8221; /&gt;<br />
&lt;mx:DataGridColumn dataField=&#8221;age&#8221; headerText=&#8221;Age&#8221;/&gt;<br />
&lt;mx:DataGridColumn dataField=&#8221;skills&#8221; headerText=&#8221;Skills&#8221;/&gt;<br />
&lt;/mx:columns&gt;<br />
&lt;/mx:DataGrid&gt;</p>
<p align="left">&nbsp;</p>
<p align="left">&lt;mx:StringValidator id=&#8221;empNameValidator&#8221; source=&#8221;{empName}&#8221; property=&#8221;text&#8221; triggerEvent=&#8221;"/&gt;<br />
&lt;mx:Form width=&#8221;100%&#8221; height=&#8221;100%&#8221; x=&#8221;50&#8243; y=&#8221;400&#8243;&gt;<br />
&lt;mx:FormItem label=&#8221;Enter name:&#8221; required=&#8221;true&#8221;&gt;<br />
&lt;mx:TextInput id=&#8221;empName&#8221; /&gt;<br />
&lt;/mx:FormItem&gt;<br />
&lt;mx:FormItem label=&#8221;Enter age:&#8221;&gt;<br />
&lt;mx:TextInput id=&#8221;age&#8221; /&gt;<br />
&lt;/mx:FormItem&gt;<br />
&lt;mx:FormItem label=&#8221;Enter skills&#8221;&gt;<br />
&lt;mx:TextInput id=&#8221;skills&#8221; /&gt;<br />
&lt;/mx:FormItem&gt;</p>
<p align="left">&lt;mx:Button label=&#8221;Add Employee&#8221; click=&#8221;validateEmpName()&#8221;/&gt;</p>
<p align="left">&lt;/mx:Form&gt;</p>
<p>&lt;/mx:Application&gt; </p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
here is code for <strong>employee.jsp</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
&lt;%<br />
String employees=&#8221;&lt;?xml version=\&#8217;1.0\&#8217; encoding=\&#8217;UTF-8\&#8217;?&gt;&lt;people&gt;&lt;person&gt;&lt;name&gt;Alex&lt;/name&gt;&lt;age&gt;22&lt;/age&gt;&lt;skills&gt;java, HTML, SQL&lt;/skills&gt;&lt;/person&gt;&lt;person&gt;&lt;name&gt;Brandon Smith&lt;/name&gt;&lt;age&gt;21&lt;/age&gt;&lt;skills&gt;PowerScript, JavaScript, ActionScript&lt;/skills&gt;&lt;/person&gt;&lt;person&gt;&lt;name&gt;Jeremy Plant&lt;/name&gt;&lt;age&gt;20&lt;/age&gt;&lt;skills&gt;SQL, C++, Java&lt;/skills&gt;&lt;/person&gt;&#8221;;</p>
<p>String name=request.getParameter(&#8220;empName&#8221;);<br />
String age=request.getParameter(&#8220;age&#8221;);<br />
String skills=request.getParameter(&#8220;skills&#8221;);<br />
String newEmployee =&#8221;&lt;person&gt;&lt;name&gt;&#8221; + name+ &#8220;&lt;/name&gt;&lt;age&gt;&#8221; + age + &#8220;&lt;/age&gt;&lt;skills&gt;&#8221;+ skills +&#8221;&lt;/skills&gt;&lt;/person&gt;&#8221;;</p>
<p>if (name == null){<br />
 out.println(employees+&#8221;&lt;/people&gt;&#8221;);<br />
}else{<br />
 out.println(employees + newEmployee + &#8220;&lt;/people&gt;&#8221;);<br />
}<br />
%&gt;</p>
<p></font></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/neoflex.wordpress.com/8/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/neoflex.wordpress.com/8/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/neoflex.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/neoflex.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/neoflex.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/neoflex.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/neoflex.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/neoflex.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/neoflex.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/neoflex.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/neoflex.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/neoflex.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/neoflex.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/neoflex.wordpress.com/8/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/neoflex.wordpress.com/8/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/neoflex.wordpress.com/8/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neoflex.wordpress.com&amp;blog=1658593&amp;post=8&amp;subd=neoflex&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://neoflex.wordpress.com/2007/11/20/sending-data-from-flex-to-jsp-using-httpservice/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a000cf34ff0e56ac395ad28664ab261?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">neoflex</media:title>
		</media:content>
	</item>
		<item>
		<title>Adobe AIR mp3 Player</title>
		<link>http://neoflex.wordpress.com/2007/10/08/adobe-air-mp3-player/</link>
		<comments>http://neoflex.wordpress.com/2007/10/08/adobe-air-mp3-player/#comments</comments>
		<pubDate>Mon, 08 Oct 2007 13:20:13 +0000</pubDate>
		<dc:creator>neoflex</dc:creator>
				<category><![CDATA[Adobe AIR]]></category>

		<guid isPermaLink="false">http://neoflex.wordpress.com/2007/10/08/adobe-air-mp3-player/</guid>
		<description><![CDATA[Presenting desktop mp3 player completely done in Adobe AIR. In this you can select any music folder using add file button, it will automatically select all mp3 file from that particular folder. This application includes following features. 1. Adding files in playlist using add button. 2. Play, stop, next, previous song button, 3. Repeat &#38; [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neoflex.wordpress.com&amp;blog=1658593&amp;post=3&amp;subd=neoflex&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p align="left">Presenting desktop mp3 player completely done in Adobe AIR.</p>
<p align="left"><a href="http://neoflex.files.wordpress.com/2008/05/neoplayer.gif"><img class="alignnone size-full wp-image-9" src="http://neoflex.files.wordpress.com/2008/05/neoplayer.gif?w=450" alt="Player Screenshot"   /></a></p>
<p><a title="Mp3 player in Adone AIR" rel="attachment wp-att-5" href="http://neoflex.wordpress.com/2007/10/08/adobe-air-mp3-player/mp3-player-in-adone-air/"></a></p>
<p><a title="neoPlayer" href="http://neoflex.files.wordpress.com/2007/10/neoplayer.jpg"></a>In this you can select any music folder using add file button, it will automatically select all mp3 file from that particular folder.</p>
<p>This application includes following features.<br />
1. Adding files in playlist using add button.<br />
2. Play, stop, next, previous song button,<br />
3. Repeat &amp; Suffle Button with it&#8217;s functionality<br />
4. Sound Control<br />
5. Visual control(Third party)<br />
6. Playing bar with remaining time and played time.<br />
7. Song info &#8211; Album name, Title and Artist<br />
8. Marquee for current playing track<br />
9. Load Playlist<br />
10. Remove selected track from list<br />
11. Select all</p>
<p>The Application is skinnable, you can change the skin which is there in skin folder.</p>
<p>You can donwload the player from <a href="http://rapidshare.com/files/117931344/neoPlayer.air" target="_blank">here</a>.</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/neoflex.wordpress.com/3/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/neoflex.wordpress.com/3/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/neoflex.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/neoflex.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/neoflex.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/neoflex.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/neoflex.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/neoflex.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/neoflex.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/neoflex.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/neoflex.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/neoflex.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/neoflex.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/neoflex.wordpress.com/3/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/neoflex.wordpress.com/3/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/neoflex.wordpress.com/3/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=neoflex.wordpress.com&amp;blog=1658593&amp;post=3&amp;subd=neoflex&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://neoflex.wordpress.com/2007/10/08/adobe-air-mp3-player/feed/</wfw:commentRss>
		<slash:comments>24</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/3a000cf34ff0e56ac395ad28664ab261?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">neoflex</media:title>
		</media:content>

		<media:content url="http://neoflex.files.wordpress.com/2008/05/neoplayer.gif" medium="image">
			<media:title type="html">Player Screenshot</media:title>
		</media:content>
	</item>
	</channel>
</rss>
