
<?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: Getting Started with JSON</title>
	<atom:link href="http://loianegroner.com/2009/12/getting-started-with-json/feed/" rel="self" type="application/rss+xml" />
	<link>http://loianegroner.com/2009/12/getting-started-with-json/</link>
	<description>My development notes</description>
	<lastBuildDate>Sat, 07 Apr 2012 07:25:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: ambaye</title>
		<link>http://loianegroner.com/2009/12/getting-started-with-json/comment-page-1/#comment-715</link>
		<dc:creator>ambaye</dc:creator>
		<pubDate>Tue, 01 Mar 2011 12:39:28 +0000</pubDate>
		<guid isPermaLink="false">http://loianegroner.com/?p=66#comment-715</guid>
		<description>it was interesting as my first guide of JSON</description>
		<content:encoded><![CDATA[<p>it was interesting as my first guide of JSON</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ricardo Cabanelas</title>
		<link>http://loianegroner.com/2009/12/getting-started-with-json/comment-page-1/#comment-714</link>
		<dc:creator>Ricardo Cabanelas</dc:creator>
		<pubDate>Tue, 01 Mar 2011 10:17:42 +0000</pubDate>
		<guid isPermaLink="false">http://loianegroner.com/?p=66#comment-714</guid>
		<description>Well, all that stuff about JSON vs XML is just a point of view. Despite the reasons i do think that fast development is best achieved with json. It´s just too many languages and procedures to cope with, don´t you agree !</description>
		<content:encoded><![CDATA[<p>Well, all that stuff about JSON vs XML is just a point of view. Despite the reasons i do think that fast development is best achieved with json. It´s just too many languages and procedures to cope with, don´t you agree !</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Top 10 Articles of 2010: Spring, Spring Security, Ext JS, Hibernate &#124; Loiane Groner</title>
		<link>http://loianegroner.com/2009/12/getting-started-with-json/comment-page-1/#comment-564</link>
		<dc:creator>Top 10 Articles of 2010: Spring, Spring Security, Ext JS, Hibernate &#124; Loiane Groner</dc:creator>
		<pubDate>Tue, 28 Dec 2010 12:38:35 +0000</pubDate>
		<guid isPermaLink="false">http://loianegroner.com/?p=66#comment-564</guid>
		<description>[...] Getting Started with JSON discussed 10 times [...]</description>
		<content:encoded><![CDATA[<p>[...] Getting Started with JSON discussed 10 times [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: medical billing</title>
		<link>http://loianegroner.com/2009/12/getting-started-with-json/comment-page-1/#comment-492</link>
		<dc:creator>medical billing</dc:creator>
		<pubDate>Sat, 11 Dec 2010 19:15:18 +0000</pubDate>
		<guid isPermaLink="false">http://loianegroner.com/?p=66#comment-492</guid>
		<description>nice post. thanks.</description>
		<content:encoded><![CDATA[<p>nice post. thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SMiGL</title>
		<link>http://loianegroner.com/2009/12/getting-started-with-json/comment-page-1/#comment-31</link>
		<dc:creator>SMiGL</dc:creator>
		<pubDate>Thu, 24 Dec 2009 09:39:06 +0000</pubDate>
		<guid isPermaLink="false">http://loianegroner.com/?p=66#comment-31</guid>
		<description>Intresting post. Thanks!</description>
		<content:encoded><![CDATA[<p>Intresting post. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DP</title>
		<link>http://loianegroner.com/2009/12/getting-started-with-json/comment-page-1/#comment-30</link>
		<dc:creator>DP</dc:creator>
		<pubDate>Thu, 24 Dec 2009 04:17:54 +0000</pubDate>
		<guid isPermaLink="false">http://loianegroner.com/?p=66#comment-30</guid>
		<description>Great article .... was very useful</description>
		<content:encoded><![CDATA[<p>Great article &#8230;. was very useful</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Casey Jordan</title>
		<link>http://loianegroner.com/2009/12/getting-started-with-json/comment-page-1/#comment-21</link>
		<dc:creator>Casey Jordan</dc:creator>
		<pubDate>Thu, 17 Dec 2009 20:35:49 +0000</pubDate>
		<guid isPermaLink="false">http://loianegroner.com/?p=66#comment-21</guid>
		<description>Nice article. However I think you are being a little bias. My experience with JSON might help to balance some of your points. About 4 years ago the technology my company develops used JSON extensively ( Mainly because we wanted something lightweight ). However as application requirements increased it was apparent that JSON did not have the power necessary to produce the results we wanted. While XML and JSON are very similar, XML has many more standard ways to interact with the data ( client and server side ). Arguments about XML having no type is poor at best since XML Schemas, Schematron and other mechanisms provide much better ways to qualify and validate data than JSON can offer. Additional the ability to transform XML ( Both on the browser and server ) dwarf JSON. XSLT can run in most browsers an provides a much more sophisticated and powerful approach than JSON-T does. JSON also has security vulnerabilities as @Felipe Gaúcho mentioned as well little/no support server side.

So now, 4 years after we started our web application, and after alot of research and development there is almost no JSON left to be found. For our needs JSON just didn&#039;t cut it and we haven&#039;t noticed any performance issues from switching to JSON to XML ( Especially since all modern browsers use compression. Compressed XML is very close in size to compressed JSON ).

That being said, JSON is a fine technology for many applications, and if all you need is a simple browser based data exchange mechanism JSON might be a great fit. 

Cheers,

Casey</description>
		<content:encoded><![CDATA[<p>Nice article. However I think you are being a little bias. My experience with JSON might help to balance some of your points. About 4 years ago the technology my company develops used JSON extensively ( Mainly because we wanted something lightweight ). However as application requirements increased it was apparent that JSON did not have the power necessary to produce the results we wanted. While XML and JSON are very similar, XML has many more standard ways to interact with the data ( client and server side ). Arguments about XML having no type is poor at best since XML Schemas, Schematron and other mechanisms provide much better ways to qualify and validate data than JSON can offer. Additional the ability to transform XML ( Both on the browser and server ) dwarf JSON. XSLT can run in most browsers an provides a much more sophisticated and powerful approach than JSON-T does. JSON also has security vulnerabilities as @Felipe Gaúcho mentioned as well little/no support server side.</p>
<p>So now, 4 years after we started our web application, and after alot of research and development there is almost no JSON left to be found. For our needs JSON just didn&#8217;t cut it and we haven&#8217;t noticed any performance issues from switching to JSON to XML ( Especially since all modern browsers use compression. Compressed XML is very close in size to compressed JSON ).</p>
<p>That being said, JSON is a fine technology for many applications, and if all you need is a simple browser based data exchange mechanism JSON might be a great fit. </p>
<p>Cheers,</p>
<p>Casey</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Felipe Gaúcho</title>
		<link>http://loianegroner.com/2009/12/getting-started-with-json/comment-page-1/#comment-16</link>
		<dc:creator>Felipe Gaúcho</dc:creator>
		<pubDate>Wed, 16 Dec 2009 11:46:57 +0000</pubDate>
		<guid isPermaLink="false">http://loianegroner.com/?p=66#comment-16</guid>
		<description>ok, you are speaking in favor of JSON, but please include in that comparision box a big disclaimer on top saying it is only from the javascript eval() point of view ..... if you go to the server side, for example, it is the complete other way round.. where you have a robust support of parsing XML and a jungle of mess for parsing JSON contents :)

nice post ....</description>
		<content:encoded><![CDATA[<p>ok, you are speaking in favor of JSON, but please include in that comparision box a big disclaimer on top saying it is only from the javascript eval() point of view &#8230;.. if you go to the server side, for example, it is the complete other way round.. where you have a robust support of parsing XML and a jungle of mess for parsing JSON contents <img src='http://loianegroner.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>nice post &#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Loiane</title>
		<link>http://loianegroner.com/2009/12/getting-started-with-json/comment-page-1/#comment-14</link>
		<dc:creator>Loiane</dc:creator>
		<pubDate>Tue, 15 Dec 2009 11:37:40 +0000</pubDate>
		<guid isPermaLink="false">http://loianegroner.com/?p=66#comment-14</guid>
		<description>Thanks for correcting me guys!

I already changed the code and the text.

Cheers!</description>
		<content:encoded><![CDATA[<p>Thanks for correcting me guys!</p>
<p>I already changed the code and the text.</p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: virgile</title>
		<link>http://loianegroner.com/2009/12/getting-started-with-json/comment-page-1/#comment-13</link>
		<dc:creator>virgile</dc:creator>
		<pubDate>Tue, 15 Dec 2009 09:27:31 +0000</pubDate>
		<guid isPermaLink="false">http://loianegroner.com/?p=66#comment-13</guid>
		<description>Wouldn&#039;t it be better with a comma at the end of the line {&quot;name&quot;: &quot;Battlestar Galactica&quot;, &quot;seasons&quot;:4 } ?
Likewise, i&#039;d say that there must be a comma at the end of line 13 and that hobby is an object with two properties, tvseries ans games.</description>
		<content:encoded><![CDATA[<p>Wouldn&#8217;t it be better with a comma at the end of the line {&#8220;name&#8221;: &#8220;Battlestar Galactica&#8221;, &#8220;seasons&#8221;:4 } ?<br />
Likewise, i&#8217;d say that there must be a comma at the end of line 13 and that hobby is an object with two properties, tvseries ans games.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Werner</title>
		<link>http://loianegroner.com/2009/12/getting-started-with-json/comment-page-1/#comment-12</link>
		<dc:creator>Werner</dc:creator>
		<pubDate>Tue, 15 Dec 2009 08:34:44 +0000</pubDate>
		<guid isPermaLink="false">http://loianegroner.com/?p=66#comment-12</guid>
		<description>Hi,

I was wondering if you did not forget a komma after the first property/value TVSeries.

Is games array also not a property on hobbies?

So hobbies would have two name/value pairs (TVSeries and games)

Correct me if I am wrong.

Cheers,

Werner</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I was wondering if you did not forget a komma after the first property/value TVSeries.</p>
<p>Is games array also not a property on hobbies?</p>
<p>So hobbies would have two name/value pairs (TVSeries and games)</p>
<p>Correct me if I am wrong.</p>
<p>Cheers,</p>
<p>Werner</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Amr ElGarhy</title>
		<link>http://loianegroner.com/2009/12/getting-started-with-json/comment-page-1/#comment-11</link>
		<dc:creator>Amr ElGarhy</dc:creator>
		<pubDate>Mon, 14 Dec 2009 22:13:37 +0000</pubDate>
		<guid isPermaLink="false">http://loianegroner.com/?p=66#comment-11</guid>
		<description>Nice article, simple and clear.</description>
		<content:encoded><![CDATA[<p>Nice article, simple and clear.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: uberVU - social comments</title>
		<link>http://loianegroner.com/2009/12/getting-started-with-json/comment-page-1/#comment-10</link>
		<dc:creator>uberVU - social comments</dc:creator>
		<pubDate>Mon, 14 Dec 2009 18:04:37 +0000</pubDate>
		<guid isPermaLink="false">http://loianegroner.com/?p=66#comment-10</guid>
		<description>&lt;strong&gt;Social comments and analytics for this post...&lt;/strong&gt;

This post was mentioned on Twitter by loiane: Getting Started with JSON http://bit.ly/4NP4mv...</description>
		<content:encoded><![CDATA[<p><strong>Social comments and analytics for this post&#8230;</strong></p>
<p>This post was mentioned on Twitter by loiane: Getting Started with JSON <a href="http://bit.ly/4NP4mv" rel="nofollow">http://bit.ly/4NP4mv</a>&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Served from: loianegroner.com @ 2012-05-18 04:13:36 -->
