<?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: Saving User preferences on the server &#8211; cutting corners in Flex</title>
	<atom:link href="http://flexblog.faratasystems.com/2006/12/21/bringing-together-sharedobject-bytearray-and-dynamic-typing-in-flex/feed" rel="self" type="application/rss+xml" />
	<link>http://flexblog.faratasystems.com/2006/12/21/bringing-together-sharedobject-bytearray-and-dynamic-typing-in-flex</link>
	<description>A blog about our experience with Adobe Flex</description>
	<lastBuildDate>Tue, 31 Jan 2012 19:52:28 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Yakov</title>
		<link>http://flexblog.faratasystems.com/2006/12/21/bringing-together-sharedobject-bytearray-and-dynamic-typing-in-flex/comment-page-1#comment-1218</link>
		<dc:creator>Yakov</dc:creator>
		<pubDate>Sun, 24 Dec 2006 13:03:21 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=141#comment-1218</guid>
		<description>While Java developers do not consider XML as the only serialization format, XML is being abused in J2EE world as the only way  of configuring multiple frameworks to make them work together.  I&#039;ve been writing on the subj on multiple ocasions, and this is the most recent article: http://java.sys-con.com/read/299903.htm</description>
		<content:encoded><![CDATA[<p>While Java developers do not consider XML as the only serialization format, XML is being abused in J2EE world as the only way  of configuring multiple frameworks to make them work together.  I&#8217;ve been writing on the subj on multiple ocasions, and this is the most recent article: <a href="http://java.sys-con.com/read/299903.htm" rel="nofollow">http://java.sys-con.com/read/299903.htm</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Valery Silaev</title>
		<link>http://flexblog.faratasystems.com/2006/12/21/bringing-together-sharedobject-bytearray-and-dynamic-typing-in-flex/comment-page-1#comment-1217</link>
		<dc:creator>Valery Silaev</dc:creator>
		<pubDate>Sun, 24 Dec 2006 12:20:02 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=141#comment-1217</guid>
		<description>Anatole,

I believe that I understand Yakov&#039;s point correctly. The only thing I&#039;d like to emphasize is that Yakov grants too much to &quot;open-mind thinking&quot; of Java crowd (and I&#039;m part of this crowd). EJB + XML descriptors, Spring + XML configurations, Hibernate + XML mappings... JavaScript developers at least know about JSON alternative, Ruby developers consider YAML, Java developers stick with XML for all cases (configuration, preferences, transport formats).

So 90% of Java Joe-s never get to the static vs dynamic aproaches comparision while they take different direction on previous step -- XML as the only possible serialization format. They will advocate that this is a &quot;standard&quot; solution and, ironically, they will be right -- they refer to standard set by Sun+IBM+BEA+...numerous OSS projects.

VS</description>
		<content:encoded><![CDATA[<p>Anatole,</p>
<p>I believe that I understand Yakov&#8217;s point correctly. The only thing I&#8217;d like to emphasize is that Yakov grants too much to &#8220;open-mind thinking&#8221; of Java crowd (and I&#8217;m part of this crowd). EJB + XML descriptors, Spring + XML configurations, Hibernate + XML mappings&#8230; JavaScript developers at least know about JSON alternative, Ruby developers consider YAML, Java developers stick with XML for all cases (configuration, preferences, transport formats).</p>
<p>So 90% of Java Joe-s never get to the static vs dynamic aproaches comparision while they take different direction on previous step &#8212; XML as the only possible serialization format. They will advocate that this is a &#8220;standard&#8221; solution and, ironically, they will be right &#8212; they refer to standard set by Sun+IBM+BEA+&#8230;numerous OSS projects.</p>
<p>VS</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anatole Tartakovsky</title>
		<link>http://flexblog.faratasystems.com/2006/12/21/bringing-together-sharedobject-bytearray-and-dynamic-typing-in-flex/comment-page-1#comment-1189</link>
		<dc:creator>Anatole Tartakovsky</dc:creator>
		<pubDate>Sat, 23 Dec 2006 15:09:14 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=141#comment-1189</guid>
		<description>Valera,
Interesting comment. I think Yakov&#039;s point was to show the difference in thinking in scripting languages: (1-liners approach) versus strong-typing-compiler-knows-everything one.  Syntax &quot;compatibility&quot; of ActionScript and Java cause people to use the same code and techniques. Two points, really:
1 not to use  classes as Object is quite flexible and should not be treated as sunctional compatibility. 
2. serialization / deserialization in Flex are way different from Java.

XML deep copy serializer would make sense for some applications requiring both sides persistance and accessibility. However, I think for the most cases we would advocate rpc calls for simplicity

Thank you
Anatole</description>
		<content:encoded><![CDATA[<p>Valera,<br />
Interesting comment. I think Yakov&#8217;s point was to show the difference in thinking in scripting languages: (1-liners approach) versus strong-typing-compiler-knows-everything one.  Syntax &#8220;compatibility&#8221; of ActionScript and Java cause people to use the same code and techniques. Two points, really:<br />
1 not to use  classes as Object is quite flexible and should not be treated as sunctional compatibility.<br />
2. serialization / deserialization in Flex are way different from Java.</p>
<p>XML deep copy serializer would make sense for some applications requiring both sides persistance and accessibility. However, I think for the most cases we would advocate rpc calls for simplicity</p>
<p>Thank you<br />
Anatole</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Valery Silaev</title>
		<link>http://flexblog.faratasystems.com/2006/12/21/bringing-together-sharedobject-bytearray-and-dynamic-typing-in-flex/comment-page-1#comment-1148</link>
		<dc:creator>Valery Silaev</dc:creator>
		<pubDate>Fri, 22 Dec 2006 11:00:08 +0000</pubDate>
		<guid isPermaLink="false">http://flexblog.faratasystems.com/?p=141#comment-1148</guid>
		<description>You say &quot;not exactly object-oriented&quot;?

Hehe...

The first suggestion from Java camp will be not about OOP, but rather about using XML as preferences format :)
Sure, shortly they suggest you to roll your own ActionScript JAXB atop of this ;)

VS</description>
		<content:encoded><![CDATA[<p>You say &#8220;not exactly object-oriented&#8221;?</p>
<p>Hehe&#8230;</p>
<p>The first suggestion from Java camp will be not about OOP, but rather about using XML as preferences format <img src='http://flexblog.faratasystems.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Sure, shortly they suggest you to roll your own ActionScript JAXB atop of this <img src='http://flexblog.faratasystems.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>VS</p>
]]></content:encoded>
	</item>
</channel>
</rss>

