<?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"
	>
<channel>
	<title>Comments on: JSMX hits the spot for simple AJAX applications</title>
	<atom:link href="http://www.chrispetersweb.com/2006/07/03/jsmx-hits-the-spot/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.chrispetersweb.com/2006/07/03/jsmx-hits-the-spot/</link>
	<description></description>
	<pubDate>Mon, 01 Dec 2008 21:59:21 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: Todd</title>
		<link>http://www.chrispetersweb.com/2006/07/03/jsmx-hits-the-spot/#comment-8</link>
		<dc:creator>Todd</dc:creator>
		<pubDate>Fri, 04 Aug 2006 18:13:42 +0000</pubDate>
		<guid isPermaLink="false">http://208.112.67.4/blog/accessibility/jsmx-hits-the-spot-for-simple-ajax-applications#comment-8</guid>
		<description>"if you write extremely simple Ajax apps, jsmx may be the one for you...one size doesn't feat them all." ?????

Please do not confuse simplicity with lack of power.... One could make the same argument about ColdFusion itself but you would be very much wrong there as well.

I have JSMX running on two enterprise level applications (one has been running almost 1 year) with no problems or shortcomings whatsoever. So the argument that JSMX is only adequate for simple Ajax apps is completely false.

As far as queued responses are concerned, if concurrency is an issue then Asynchronous requests are inappropriate regardless of what Ajax Stub you are using. Making that argument would be like faulting ColdFusion for not preserving order within structures (both go against "the nature of the beast"). Anchronous requests really SHOULDN'T matter which order they are fired off in since you cannot depend on which order the responses will be returned in. An attempt to control that would be a misuse of the very idea behind Asynchronous programming. So, this argument is invalid if trying to suggest JSMX is not robust.

I will say that JSMX was designed to be extremely easy to use and VERY flexible. I know of several PHP and .NET developers who use it as well. So I have no problems with anyone who prefers AjaxCFC over JSMX, that is fine. Just please don't do JSMX a disservice by suggesting you con't use it within "robust" application. JSMX can handle it ;)</description>
		<content:encoded><![CDATA[<p>&#8220;if you write extremely simple Ajax apps, jsmx may be the one for you&#8230;one size doesn&#8217;t feat them all.&#8221; ?????</p>
<p>Please do not confuse simplicity with lack of power&#8230;. One could make the same argument about ColdFusion itself but you would be very much wrong there as well.</p>
<p>I have JSMX running on two enterprise level applications (one has been running almost 1 year) with no problems or shortcomings whatsoever. So the argument that JSMX is only adequate for simple Ajax apps is completely false.</p>
<p>As far as queued responses are concerned, if concurrency is an issue then Asynchronous requests are inappropriate regardless of what Ajax Stub you are using. Making that argument would be like faulting ColdFusion for not preserving order within structures (both go against &#8220;the nature of the beast&#8221;). Anchronous requests really SHOULDN&#8217;T matter which order they are fired off in since you cannot depend on which order the responses will be returned in. An attempt to control that would be a misuse of the very idea behind Asynchronous programming. So, this argument is invalid if trying to suggest JSMX is not robust.</p>
<p>I will say that JSMX was designed to be extremely easy to use and VERY flexible. I know of several PHP and .NET developers who use it as well. So I have no problems with anyone who prefers AjaxCFC over JSMX, that is fine. Just please don&#8217;t do JSMX a disservice by suggesting you con&#8217;t use it within &#8220;robust&#8221; application. JSMX can handle it <img src='http://www.chrispetersweb.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chris Peters</title>
		<link>http://www.chrispetersweb.com/2006/07/03/jsmx-hits-the-spot/#comment-7</link>
		<dc:creator>Chris Peters</dc:creator>
		<pubDate>Tue, 04 Jul 2006 03:44:11 +0000</pubDate>
		<guid isPermaLink="false">http://208.112.67.4/blog/accessibility/jsmx-hits-the-spot-for-simple-ajax-applications#comment-7</guid>
		<description>Thanks for the comment, Rob. I'm not sure what the error was from your framework and why I was receiving it. But the application I have written will only be used by a couple users, and the business logic is in CFCs behind an Application.cfm that locks non-admin users out.

Maybe I will reevaluate when my requirements demand something more robust.</description>
		<content:encoded><![CDATA[<p>Thanks for the comment, Rob. I&#8217;m not sure what the error was from your framework and why I was receiving it. But the application I have written will only be used by a couple users, and the business logic is in CFCs behind an Application.cfm that locks non-admin users out.</p>
<p>Maybe I will reevaluate when my requirements demand something more robust.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob Gonda</title>
		<link>http://www.chrispetersweb.com/2006/07/03/jsmx-hits-the-spot/#comment-6</link>
		<dc:creator>Rob Gonda</dc:creator>
		<pubDate>Tue, 04 Jul 2006 02:15:48 +0000</pubDate>
		<guid isPermaLink="false">http://208.112.67.4/blog/accessibility/jsmx-hits-the-spot-for-simple-ajax-applications#comment-6</guid>
		<description>JSMX is definitely simpler, but you are trading simplicity for robustness. I really do not want to get into details and jsmx, but as a simple concurrency test for example... try queuing many simultaneous requests and fake a 1-second response for each... Windows will only allow two simultaneous persistent requests and queue the remaining; if you run this with IE you will find the jsmx fires the queued requests in no particular order. This situation is not uncommon; a real application could easily have more than two simultaneous requests and your framework should be able to handle it effectively. Then again, if you write extremely simple Ajax apps, jsmx may be the one for you... one size doesn't feat them all.

Cheers

~Rob

</description>
		<content:encoded><![CDATA[<p>JSMX is definitely simpler, but you are trading simplicity for robustness. I really do not want to get into details and jsmx, but as a simple concurrency test for example&#8230; try queuing many simultaneous requests and fake a 1-second response for each&#8230; Windows will only allow two simultaneous persistent requests and queue the remaining; if you run this with IE you will find the jsmx fires the queued requests in no particular order. This situation is not uncommon; a real application could easily have more than two simultaneous requests and your framework should be able to handle it effectively. Then again, if you write extremely simple Ajax apps, jsmx may be the one for you&#8230; one size doesn&#8217;t feat them all.</p>
<p>Cheers</p>
<p>~Rob</p>
]]></content:encoded>
	</item>
</channel>
</rss>
