<?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/"
	>

<channel>
	<title>Warping it up! &#187; AJAX</title>
	<atom:link href="http://www.bytefarmers.com/log/tag/ajax/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.bytefarmers.com/log</link>
	<description>Fini Alring's Glossy Tech Zine</description>
	<lastBuildDate>Fri, 16 Dec 2011 13:42:31 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>AJAX based site built on Prototype</title>
		<link>http://www.bytefarmers.com/log/2005/09/03/ajax-based-site-built-on-prototype/</link>
		<comments>http://www.bytefarmers.com/log/2005/09/03/ajax-based-site-built-on-prototype/#comments</comments>
		<pubDate>Sat, 03 Sep 2005 15:04:31 +0000</pubDate>
		<dc:creator>Fini Alring</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[Band]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Music]]></category>
		<category><![CDATA[Prototype]]></category>
		<category><![CDATA[Rico]]></category>
		<category><![CDATA[RSS]]></category>

		<guid isPermaLink="false">http://www.bytefarmers.com/log/?p=597</guid>
		<description><![CDATA[Nader Cserny at bandnews.org sent me a notice that he and his team have just released their site. The reason he told me is that it is using AJAX extensively, and as he said &#8220;Unlike all the hyped websites we tried to use Ajax in an intelligent and useful way.&#8221; This of course lit my [...]]]></description>
			<content:encoded><![CDATA[<p>Nader Cserny at bandnews.org sent me a notice that he and his team have just released their site. The reason he told me is that it is using <abbr title="Asynchronous JavaScript and XML">AJAX</abbr> extensively, and as he said &#8220;<em>Unlike all the hyped websites we tried to use Ajax in an intelligent and useful way.</em>&#8221; This of course lit my appetite and the rest is history.</p>
<p>The site acts as an RSS aggregator for music bands. This could of course easily be refurnished for other purposes, but I think it&#8217;s quite neat idea, which might also make RSS feeds more accessible to the non-techies out there (because they won&#8217;t know it&#8217;s RSS before it&#8217;s too late!! he he)&#8230;</p>
<p>The website uses yet another &#8220;AJAX&#8221; / Rich-App framework called <a href="http://prototype.conio.net/">Prototype</a> (JavaScript toolkit for class-driven development). I am not sure what to think of this framework myself, but perhaps it&#8217;s because I am too much in love with my own. The code is pretty much stripped from comments, making it hard to grasp all the cool stuff (No, manuals are not enough when trying to read sourcecode, not even a single line describing each class! truly bad code habit). Ok so I don&#8217;t think <a href="http://prototype.conio.net/">Prototype</a> can be called an Ajax framework, since it does so much more it&#8217;s more proper to call it Rich-App framework. Personally I would have divided stuff up in more modular parts, i.e. there is a toColorPart() function in the same framework as Ajax and Event code.. This makes me itch, but ofcourse it&#8217;s just me flaming other peoples code, which I&#8217;m sure will haunt me in my dreams&#8230; Check out their own demos, and also a host of fancy UI components made by others with the use of Prototype, such as <a href="http://openrico.org/rico/demos.page">Rico</a>. There is some really great stuff there.</p>
<p><a href="http://www.bandnews.org/">Bandnews.org &#8211; Search &#038; Read Music News.</a></p>
<p><a href="http://prototype.conio.net/">Prototype JavaScript Framework</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bytefarmers.com/log/2005/09/03/ajax-based-site-built-on-prototype/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction to AJAX</title>
		<link>http://www.bytefarmers.com/log/2005/08/13/introduction-to-ajax/</link>
		<comments>http://www.bytefarmers.com/log/2005/08/13/introduction-to-ajax/#comments</comments>
		<pubDate>Sat, 13 Aug 2005 21:04:32 +0000</pubDate>
		<dc:creator>Fini Alring</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[http]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Steroids]]></category>
		<category><![CDATA[WarpXML]]></category>
		<category><![CDATA[XML]]></category>
		<category><![CDATA[XMLHttpRequest]]></category>

		<guid isPermaLink="false">http://www.bytefarmers.com/log/2005/08/13/introduction-to-ajax/</guid>
		<description><![CDATA[I started as a Web Developer in 1996, and quicky found the wonders of JavaScript, and has since been doing tons of stuff with it. When doing more complex stuff it has always been an issue of how to get the code to communicate between client and server, as well as between frames and what [...]]]></description>
			<content:encoded><![CDATA[<p>I started as a Web Developer in 1996, and quicky found the wonders of JavaScript, and has since been doing tons of stuff with it. When doing more complex stuff it has always been an issue of how to get the code to communicate between client and server, as well as between frames and what have you.. In the beginning we had to use hidden frames and iframes to send data back and forth, without reloading the main window. But one of the best features for doing that has only been widely used for 3-4 years in cross-browser enviroments (IE 5.0 introduced it). Itâ€™s the XMLHttpRequest API which allows the client to send and recieve XML documents thru ordinary HTTP GET &#038; POST methods. The IO is handled asyncronously and uses events calls to inform the client of the status.</p>
<p>This introduction was taken from the pages of my own AJAX API, which I am releasing very soon, stay tuned!!</p>
<p><a href="http://www.bytefarmers.com/log/code/javascript/warpxml/">WarpXML 2.0 &#8211; AJAX on Steriods</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.bytefarmers.com/log/2005/08/13/introduction-to-ajax/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Interview: Google Maps Creator</title>
		<link>http://www.bytefarmers.com/log/2005/07/29/interview-google-maps-creator/</link>
		<comments>http://www.bytefarmers.com/log/2005/07/29/interview-google-maps-creator/#comments</comments>
		<pubDate>Fri, 29 Jul 2005 12:36:56 +0000</pubDate>
		<dc:creator>Fini Alring</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[dev]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Interview]]></category>
		<category><![CDATA[lars]]></category>
		<category><![CDATA[Maps]]></category>
		<category><![CDATA[PNG]]></category>
		<category><![CDATA[rasmussen]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[VML]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[XSL]]></category>

		<guid isPermaLink="false">http://www.bytefarmers.com/log/2005/07/29/interview-google-maps-creator/</guid>
		<description><![CDATA[&#8220;Addressing a crowd of developers in Sydney today, Google Maps creator Lars Rasmussen encouraged them to embrace bleeding edge technology in browser software. He cited the example of how Google Maps can command Internet Explorer to use VML (Vector Markup Language by Microsoft) to display a blue line between geographical points, but use a PNG [...]]]></description>
			<content:encoded><![CDATA[<blockquote><p><i>&#8220;Addressing a crowd of developers in Sydney today, Google Maps creator Lars Rasmussen encouraged them to embrace <a href="http://zdnet.com.au/news/software/soa/Take_browsers_to_the_limit_Google/0,2000061733,39204515,00.htm">bleeding edge technology in browser software</a>. He cited the example of how Google Maps can command Internet Explorer to use VML (Vector Markup Language by Microsoft) to display a blue line between geographical points, but use a PNG graphic format and a linear description for the Firefox browser.&#8221;</i> </p>
<p>From the article: <i>&#8220;Firstly, the Web allows rapid deployment and there is no software for users to install. It&#8217;s also much easier to make sure code runs on multiple browsers compared with multiple operating systems like Mac OS X and Windows. The downside is that browsers don&#8217;t give programmers full access to a computer&#8217;s resources such as memory, process power and hard disk space. This is a bottleneck the engineer sees being removed in future, although he thinks the simplicity of the current Web browsing experience needs to be maintained.&#8221;</i></p></blockquote>
<p><a href="http://zdnet.com.au/news/software/soa/Take_browsers_to_the_limit_Google/0,2000061733,39204515,00.htm">Take browsers to the limit: Google</a></p>
<p><a href="http://developers.slashdot.org/article.pl?sid=05/07/28/1219219&#038;tid=217&#038;tid=156&#038;tid=95">Slashdot | Google Maps Creator Takes Browsers To The Limit</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bytefarmers.com/log/2005/07/29/interview-google-maps-creator/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JavaScript &#8211; The past and beyond</title>
		<link>http://www.bytefarmers.com/log/2005/06/21/javascript-the-past-and-beyond/</link>
		<comments>http://www.bytefarmers.com/log/2005/06/21/javascript-the-past-and-beyond/#comments</comments>
		<pubDate>Tue, 21 Jun 2005 11:30:22 +0000</pubDate>
		<dc:creator>Fini Alring</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[dev]]></category>
		<category><![CDATA[dhtml]]></category>
		<category><![CDATA[e4x]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Open_Source]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.bytefarmers.com/log/2005/06/21/javascript-the-past-and-beyond/</guid>
		<description><![CDATA[Brendan Eich writes about JavaScript and it&#8217;s future especially concerning JS 2.x. Brendan writes &#8220;With DHTML and AJAX hot (or hot again; we&#8217;ve been here before, and I don&#8217;t like either acronym), I am asked frequently these days about JavaScript, past and future. In spite of the fact that JS was misnamed (I will call [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://weblogs.mozillazine.org/roadmap/" title="Inventor of JavaScript">Brendan Eich</a> writes about JavaScript and it&#8217;s future especially concerning JS 2.x.</p>
<p>Brendan writes &#8220;<em>With <a href="http://en.wikipedia.org/wiki/DHTML">DHTML</a> and <a href="http://en.wikipedia.org/wiki/AJAX">AJAX</a><br />
hot (or hot again; we&#8217;ve been here before, and I don&#8217;t like either acronym), I am asked frequently these days about JavaScript, past and future. In spite of the fact that JS was misnamed (I will call it JS in the rest of this entry), <a href="http://www.crockford.com/javascript/recommend.html">standardized prematurely</a>, then <a href="http://www.crockford.com/javascript/javascript.html">ignored and stagnated</a> during most of its life, its primitives are strong enough that whole ecologies of toolkit and web-app code have emerged on top of it. (I don&#8217;t agree with everything Doug Crockford writes at the last two links, but most of his arrows hit their targets.)</em>&#8221;</p>
<p>* <a href="http://weblogs.mozillazine.org/roadmap/archives/008325.html">Brendan&#8217;s Roadmap Updates: JavaScript 1, 2, and in between</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bytefarmers.com/log/2005/06/21/javascript-the-past-and-beyond/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Dojo &#8211; The Browser Toolkit</title>
		<link>http://www.bytefarmers.com/log/2005/06/13/dojo-the-browser-toolkit/</link>
		<comments>http://www.bytefarmers.com/log/2005/06/13/dojo-the-browser-toolkit/#comments</comments>
		<pubDate>Mon, 13 Jun 2005 11:07:31 +0000</pubDate>
		<dc:creator>Fini Alring</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[dev]]></category>
		<category><![CDATA[DOJO]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[XMLHttpRequest]]></category>

		<guid isPermaLink="false">http://www.bytefarmers.com/log/2005/06/13/dojo-the-browser-toolkit/</guid>
		<description><![CDATA[Oh, well you can&#8217;t mention &#8216;em all except one, so here&#8217;s the AJAX / browser UI toolkit briefly mentioned in the previous post. I haven&#8217;t tried this or any of the other mentioned Ajax API&#8217;s because I have written my own a long time before all this Ajax talk, I won&#8217;t promise when I&#8217;ll release [...]]]></description>
			<content:encoded><![CDATA[<p>Oh, well you can&#8217;t mention &#8216;em all except one, so here&#8217;s the AJAX / browser UI toolkit briefly mentioned in the <a href="/log/2005/06/13/simple-ajax-code-kit-sack/">previous post</a>. I haven&#8217;t tried this or any of the other mentioned Ajax API&#8217;s because I have written my own a long time before all this Ajax talk, I won&#8217;t promise when I&#8217;ll release it, because it seems I have to evaluate the feature sets of quite a number of api&#8217;s first.. One&#8217;s api has to be superior ofcourse (<em>Seriously I will probably go for a multi-layered architecture, attempting to base a complex Ajax core upon a low-level core, allowing for the many uses XML data has on a website</em>)..</p>
<p>* <a href="http://dojotoolkit.com/">Dojo Toolkit</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bytefarmers.com/log/2005/06/13/dojo-the-browser-toolkit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Simple AJAX Code-Kit (SACK)</title>
		<link>http://www.bytefarmers.com/log/2005/06/13/simple-ajax-code-kit-sack/</link>
		<comments>http://www.bytefarmers.com/log/2005/06/13/simple-ajax-code-kit-sack/#comments</comments>
		<pubDate>Mon, 13 Jun 2005 10:21:13 +0000</pubDate>
		<dc:creator>Fini Alring</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[dev]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[SACK]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[XMLHttpRequest]]></category>

		<guid isPermaLink="false">http://www.bytefarmers.com/log/2005/06/13/simple-ajax-code-kit-sack/</guid>
		<description><![CDATA[In this seemingly unlimited stream of AJAX articles and frameworks, let me present you to SACK. SACK is a light-weight AJAX API, written by Gregory Wild-Smith. Gregory writes: &#8220;Iâ€™ve seen AJAX solutions like SAJAX or Dojo, and they havenâ€™t really interested me. They seem to bloated and, for the most part, rather insecure. This is [...]]]></description>
			<content:encoded><![CDATA[<p>In this seemingly unlimited stream of AJAX articles and frameworks, let me present you to <a href="http://twilightuniverse.com/2005/05/sack-of-ajax/">SACK</a>. SACK is a light-weight AJAX API, written by <a href="http://twilightuniverse.com">Gregory Wild-Smith</a>.</p>
<blockquote class="floatRight"><p>Gregory writes: &#8220;<em>Iâ€™ve seen AJAX solutions like <a href="http://www.modernmethod.com/sajax/">SAJAX</a> or <a href="http://dojotoolkit.com/">Dojo</a>, and they havenâ€™t really interested me. They seem to bloated and, for the most part, <a href="http://www.intertwingly.net/blog/2005/03/16/AJAX-Considered-Harmful">rather</a> <a href="http://www.intertwingly.net/blog/2005/04/01/Sajax-Still-UnSafe">insecure</a>.<br />
This is mostly because they appear to be trying to do things with AJAX that it can do, but should it?</em>&#8220;</p></blockquote>
<p>* <a href="http://twilightuniverse.com/2005/05/sack-of-ajax/">Sack of AJAX</a><br />
* <a href="http://twilightuniverse.com/2005/06/we-fear-change/">AJAX &#8211; We fear change</a><br />
* <a href="http://twilightuniverse.com/2005/06/shiny-new-sack/">Shiny New Sack</a><br />
* <a href="http://twilightuniverse.com/2005/03/ajax-whiter-than-white/">AJAX : Whiter than White?</a></p>
<p>* <a href="http://twilightuniverse.com/projects/sack/">Simple AJAX Code-Kit (SACK) Docs</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bytefarmers.com/log/2005/06/13/simple-ajax-code-kit-sack/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SAJAX V0.10 &#8211; Simple AJAX Toolkit</title>
		<link>http://www.bytefarmers.com/log/2005/06/09/sajax-v010-simple-ajax-toolkit/</link>
		<comments>http://www.bytefarmers.com/log/2005/06/09/sajax-v010-simple-ajax-toolkit/#comments</comments>
		<pubDate>Thu, 09 Jun 2005 12:03:58 +0000</pubDate>
		<dc:creator>Fini Alring</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[dev]]></category>
		<category><![CDATA[ModernMethod]]></category>
		<category><![CDATA[open]]></category>
		<category><![CDATA[SAJAX]]></category>
		<category><![CDATA[source]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[Toolkit]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[XMLHttpRequest]]></category>

		<guid isPermaLink="false">http://www.bytefarmers.com/log/2005/06/09/sajax-v010-simple-ajax-toolkit/</guid>
		<description><![CDATA[I have not had time to evaluate this framework, but I have come across it the last couple of days, so I might as well post a note about, to get you started on this. * In not too distant future I will be releasing my own XML frameworks as Open Source (most probably CC-GNU [...]]]></description>
			<content:encoded><![CDATA[<p>I have not had time to evaluate this framework, but I have come across it the last couple of days, so I might as well post a note about, to get you started on this. </p>
<p>* In not too distant future I will be releasing my own XML frameworks as Open Source (most probably CC-GNU GPL), I just thought I would like to update them a little first, since they were mainly written in 2002.</p>
<blockquote><p>&#8220;<em>Sajax is an open source tool to make programming websites using the Ajax framework â€” also known as XMLHTTPRequest or remote scripting â€” as easy as possible. Sajax makes it easy to call PHP, Perl or Python functions from your webpages via JavaScript without performing a browser refresh. The toolkit does 99% of the work for you so you have no excuse to not use it.</em>&#8220;</p></blockquote>
<p>* <a href="http://www.modernmethod.com/sajax/">SAJAX &#8211; Simple Ajax Toolkit by ModernMethod &#8211; XMLHTTPRequest Toolkit</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bytefarmers.com/log/2005/06/09/sajax-v010-simple-ajax-toolkit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Maps insider</title>
		<link>http://www.bytefarmers.com/log/2005/06/03/google-maps-insider/</link>
		<comments>http://www.bytefarmers.com/log/2005/06/03/google-maps-insider/#comments</comments>
		<pubDate>Fri, 03 Jun 2005 16:40:56 +0000</pubDate>
		<dc:creator>Fini Alring</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[dev]]></category>
		<category><![CDATA[GMail]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Maps]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[XMLHttp]]></category>

		<guid isPermaLink="false">http://www.bytefarmers.com/log/2005/06/03/google-maps-insider/</guid>
		<description><![CDATA[&#8220;jgwebber&#8221; has written an in-depth article about the way &#8220;Google Maps&#8221; (Good old hidden frame technique) works and compared it with GMail&#8217;s (XMLHttp based) method. as simple as possible, but no simpler: Mapping Google]]></description>
			<content:encoded><![CDATA[<p>&#8220;<a href="http://jgwebber.blogspot.com">jgwebber</a>&#8221; has written an in-depth article about the way &#8220;<a href="http://maps.google.com/">Google Maps</a>&#8221; (<a href="http://builder.com.com/5100-6371-1044658.html">Good old hidden frame technique</a>) works and compared it with <a href="http://mail.google.com">GMail&#8217;s</a> (<a href="http://www.webopedia.com/TERM/X/XMLHTTP.html">XMLHttp</a> based) method.</p>
<p><a href="http://jgwebber.blogspot.com/2005/02/mapping-google.html">as simple as possible, but no simpler: Mapping Google</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bytefarmers.com/log/2005/06/03/google-maps-insider/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AJAX in practice and it&#8217;s problems</title>
		<link>http://www.bytefarmers.com/log/2005/05/13/ajax-in-practice-and-its-problems/</link>
		<comments>http://www.bytefarmers.com/log/2005/05/13/ajax-in-practice-and-its-problems/#comments</comments>
		<pubDate>Thu, 12 May 2005 22:58:39 +0000</pubDate>
		<dc:creator>Fini Alring</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[dev]]></category>
		<category><![CDATA[Standards]]></category>
		<category><![CDATA[Usability]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[XMLHttpRequest]]></category>

		<guid isPermaLink="false">http://www.bytefarmers.com/log/2005/05/13/ajax-in-practice-and-its-problems/</guid>
		<description><![CDATA[Thomas Baekdal writes about the usability issues of XML/JS/HTML or these days just AJAX. * Usability issues with XMLHttpRequest. * Usable XMLHttpRequest in Practice]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.baekdal.com">Thomas Baekdal</a> writes about the usability issues of XML/JS/HTML or these days just AJAX.</p>
<p>* <a href="http://www.baekdal.com/articles/Usability/XMLHttpRequest-guidelines/">Usability issues with XMLHttpRequest.</a></p>
<p>* <a href="http://www.baekdal.com/articles/usability/usable-XMLHttpRequest/">Usable XMLHttpRequest in Practice</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bytefarmers.com/log/2005/05/13/ajax-in-practice-and-its-problems/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>AJAX and Web services with E4X</title>
		<link>http://www.bytefarmers.com/log/2005/04/26/ajax-and-scripting-web-services-with-e4x-part-1/</link>
		<comments>http://www.bytefarmers.com/log/2005/04/26/ajax-and-scripting-web-services-with-e4x-part-1/#comments</comments>
		<pubDate>Tue, 26 Apr 2005 12:14:51 +0000</pubDate>
		<dc:creator>Fini Alring</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[AJAX]]></category>
		<category><![CDATA[dev]]></category>
		<category><![CDATA[e4x]]></category>
		<category><![CDATA[services]]></category>
		<category><![CDATA[web]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://www.bytefarmers.com/log/?p=424</guid>
		<description><![CDATA[Get an introduction to ECMAScript for XML (E4X), a simple extension to JavaScript that makes XML scripting very simple. In this paper, the authors demonstrate a Web programming model called Asynchronous JavaScript and XML (AJAX) and show you how some new XML extensions to JavaScript can make it very simple. AJAX and scripting Web services [...]]]></description>
			<content:encoded><![CDATA[<p>Get an introduction to <a href="http://www.ecma-international.org/publications/standards/Ecma-357.htm">ECMAScript for XML (E4X)</a>, a simple extension to JavaScript that makes XML scripting very simple. In this paper, the authors demonstrate a Web programming model called <a href="http://www.omnytex.com/articles/xhrstruts/">Asynchronous JavaScript and XML (AJAX)</a> and show you how some new XML extensions to JavaScript can make it very simple.</p>
<p><a href="http://www-128.ibm.com/developerworks/webservices/library/ws-ajax1/">AJAX and scripting Web services with E4X, Part 1</a>, <a href="http://www-128.ibm.com/developerworks/webservices/library/ws-ajax2/">Part 2</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.bytefarmers.com/log/2005/04/26/ajax-and-scripting-web-services-with-e4x-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 12/19 queries in 0.008 seconds using disk: basic

Served from: www.bytefarmers.com @ 2012-02-08 14:16:20 -->
