Uh oh! Here comes yet another technology buzzword. This time it’s “AJAX”. In addition to being a household cleaner, a character from Greek mythology, and the name of a European soccer club, AJAX is Asynchronous communication, JavaScript, and XML. These technologies, which are already present in your browser, make it possible to retrieve information without refreshing a Web page.
Citing Google’s use of AJAX, the Wall Street Journal noted recently that AJAX represents “a big step toward the Holy Grail of having the kinds of speed and responsiveness in Web-based programs that’s usually associated only with desktop software.”[1] And increasingly, developers, entrepreneurs, and industry analysts are grasping the opportunities that AJAX presents.
So what’s all the excitement? The need and desire to provide richer functionality in Web-deployed applications, a.k.a. Rich Internet Applications (RIA), have been around for a while. Historically, attempts to deliver on this vision however have required supplemental browser technologies such as Java applets, Active-X controls, and browser plug-ins. But each of these approaches has challenges. There are security concerns around Active-X. The Java runtime version required by an applet may not be present, or applets may be blocked by firewalls. The right version of a plug-in may not be present, and locked-down enterprise desktops may prevent it from being updated. With an AJAX-enabled RIA, even the most cynical software engineer acknowledges that there is no need for supplementation. Developers and businesses alike are excited about AJAX because it leverages functionality that is readily accessible in the browser.
The base technology for AJAX has been available since 1999 when Microsoft put an XML parser into Internet Explorer and formalized, in its XML HTTP Request object, a method for background communications that eliminated the need for creative work-arounds, such as using hidden portions of a Web page. The early AJAX pioneers focused on business-to-business applications where Internet Explorer had a ubiquitous presence. However, with the recent addition of AJAX capabilities to other browsers, most notably Mozilla Firefox, developers are enhancing consumer applications with richer capabilities. Support across multiple browser types enabled Google to provide its much touted maps.google.com site to a world-wide audience. This support has also contributed to the popularization of the AJAX acronym, coined in early 2005 by Adaptive Path, a San Francisco-based business and Web consulting firm. Now the buzz is that any software start-up visiting a Sand Hill Road venture firm should have the term in its PowerPoint deck.
Deconstructing “AJAX”
A brief survey of ajaxian.com—a developer website that catalogs and facilitates discussions of all things AJAX—quickly reveals that AJAX is being applied to everything from simple communication scripts to full-blown RIA development and deployment frameworks. One of the problems with the term AJAX is that, strictly speaking, the concepts underlying the acronym do not encompass a graphical user interface. Tightly defined, AJAX simply describes a technology that transports information to and from the browser and not how that information is displayed. To purists, AJAX is about communicating asynchronously from the browser using JavaScript and XML, nothing more. To others, through their experiences with Google Maps and Yahoo!’s new email offering, AJAX represents a desktop-like GUI that leverages the pre-existing HTML, DHTML, and vector-based rendering capabilities of the browser. When they speak of AJAX, just as the Wall Street Journal did, they mean the rich user interactivity of the desktop—not just background communications. Either way, “AJAX” is a lot catchier than “DHVAJAX.” Accordingly, it’s likely that developers will continue to use it for a broad spectrum of uses. So, it’s important to understand the “quantum states” the term has taken on.
Four Quantum States
This article proposes four quantum states of AJAX in an effort to tease apart and classify the plethora of AJAX technologies available today.
Communication libraries
User Interface Components
Rich Internet Application frameworks
RIA Frameworks with robust visual tooling
Your unique needs will determine which of the following AJAX incarnations makes the most sense for you.
Communication Libraries – libraries that provide the communication elements named in the acronym and nothing more.
Recall that your desktop Web browser—assuming you’re not using an obscure one—has asynchronous communications, JavaScript, and XML built in. You can directly interact with the JavaScript APIs that Internet Explorer and Firefox provide with their XML and asynchronous communication objects. Of course, the rub is that the APIs for each browser are slightly different. Accordingly, libraries such as Prototype, SAJAX, and AJAX.NET handle the browser differences for asynchronous communications, while Google’s AjaXSLT provides a JavaScript implementation of XSLT and XPath that enables you to work with XML structures more easily across a variety of browsers.
Potential Users
If all you want to do is update the options in a select box, swap out content in a HTML page asynchronously, or perform other simple content updating tasks, communication libraries offer strong CSS and DOM capabilities. And if you love working with low-level objects, they are a good fit. If you’d prefer to have reusable GUI components at your disposal, read on.
GUI Components – graphical user interface components that are scripted to communicate asynchronously and display the resulting information without refreshing the entire Web page.
What you find in libraries offered by Dojo Toolkit, Rico, eBusiness-Apps, and others are out-of-the box GUI controls that can retrieve data in the background and render it in the GUI control. Typically, one finds GUI controls that can be used individually or several at a time to enhance portions of a Web page. These components may or may not share common communication libraries or a common look and feel.
Widgets: Part of the Dojo Toolkit
Potential Users
Developers with existing HTML pages can add GUI controls that enrich a page with these ready-made libraries. If you aspire to full-fledged browser-based applications rather than occasional enhancements, AJAX-based RIA frameworks (described later) will help you head off issues that arise from mixing and matching components that do not share a common infrastructure.
Rich Internet Application (RIA) Frameworks – AJAX-based RIA Frameworks that deliver ready-built, fully-integrated libraries of interactive GUI components and share common approaches to data acquisition, persistence, and communication. Some frameworks center on server-side models, while others are sophisticated client-side libraries.
In these frameworks, GUI controls share a common look and feel—in contrast to stand-alone, mix-and-match GUI components. In addition, in RIA frameworks, communications, data caching, and other core services are shared among GUI controls, usually in an extensible model that supports object inheritance.
There’s also a semantic shift in the language used to describe objectives. For example, in RIAs, the notion of a “page” goes away and is replaced by application “screens,” “controls,” “modal dialogs,” and other conventions of the client-server GUI world that pre-dated the Web. If you think in these terms, then AJAX-based RIA frameworks such as Bindows, Isomorphic, BackBase, JackBe, TIBCO General Interface and others make sense.
Potential Users
RIA Framework users are likely to be development organizations creating both tactical and mission-critical solutions. Here, developers are creating complete RIAs, rather than simply enhancing an HTML page with a few GUI components. Thus, these desktop-like applications transcend simple enriched Web pages. At the same time, the capability still remains to place a component or two into an existing HTML page and enhance its functionality. In the latter case it may require a bit more overhead to get the component up and running. Often, though, the component definitions are cached at the client, making overhead less of an issue.
RIA Frameworks with Visual Development Tooling – AJAX RIA frameworks accompanied by visual authoring capabilities via a custom development environment or plug-ins to popular IDEs.
Here, developers write significantly less code than if using a framework’s APIs directly. In comparative terms, developers don’t write much code using pure AJAX communication libraries or AJAXified GUI components, because their goals are usually relatively limited. Hence, in building full applications with a framework, it’s a powerful, but time consuming to write directly to the framework APIs. AJAX RIA frameworks such as BackBase, JackBe, TIBCO General Interface, and others provide rapid development tools that increase developer productivity and reduce the cost of owning AJAX RIA applications. In order not be left out of a hot development trend, Microsoft has also announced its intention to provide an AJAX framework code named Atlas that works with it’s .NET server-side framework and likely it’s visual development tools. These tools complement frameworks through access to visual debugging, communication tracing, API references, code generation, and other time-saving features.
Potential Users
Savvy AJAX RIA tooling applies to much the same group of users as those considering an AJAX RIA framework. For many organizations, author time efficiency is paramount, so tools must make building applications faster and easier.
Wrapping it up:
While the strictest definition of AJAX addresses only communications, the term is being used to describe a new class of more richly-featured GUI component and a class of Rich Internet Applications that require no plug-ins, Active-X controls, applets, or other technology to supplement the browser while achieving functionality and performance that is comparable to desktop-installed applications.
Given that, when potential users ask whether AJAX is simply an ingredient in a no-plug-ins, no-Java applets, no-Active-X approach to RIAs, or a class of RIAs unto itself, the answer it seems is “all of the above.”
A Snapshot of Tools Available for all AJAX States:
Author’s note: The products in this table are a sampling of the plethora of AJAX-related libraries, frameworks, and tools evolving. A more complete and ever-growing list can be found at http://ajaxpatterns.org/Javascript_Multipurpose_Frameworks.
Top Diagram: The synchronous interaction pattern of a traditional web application (top) compared with the asynchronous pattern of an Ajax
application (bottom). Image source: Jesse James Garrett (c) AdaptivePath.
[1] Lee Gomes, “Google Bets on AJAX,” The Wall Street Journal, March 15, 2005.
About Kevin Hakman Kevin Hakman is the director of product marketing for Aptana, Inc. He co-founded General Interface, the award-winning AJAX and Rich Internet Application framework and toolkit, in 2001. TIBCO acquired General Interface in 2004. Hakman is a contributor to SOA World Magazine, AJAXWorld Magazine, and has spoken at numerous industry events.
j j wrote: Tightly
defined, AJAX simply
describes a technology
that transports
information to and from
the browser and not how
that information is
displayed. To purists,
AJAX is about
communicating
asynchronously from the
browser using JavaScript
and XML, nothing more. To
others, through their
experiences with Google
Maps and Yahoo!'s new
e-mail offering, AJAX
represents a desktop-like
GUI that leverages the
pre-existing HTML, DHTML,
and vector-based
rendering capabilities of
the browser. Either way,
'AJAX' is a lot catchier
than 'DHVAJAX.'
Accordingly, it's likely
that developers will
continue to use it for a
broad spectrum of uses.
So, it's important to
understand the 'quantum
states' the term has
taken on.
n d wrote: Tightly
defined, AJAX simply
describes a technology
that transports
information to and from
the browser and not how
that information is
displayed. To purists,
AJAX is about
communicating
asynchronously from the
browser using JavaScript
and XML, nothing more. To
others, through their
experiences with Google
Maps and Yahoo!'s new
e-mail offering, AJAX
represents a desktop-like
GUI that leverages the
pre-existing HTML, DHTML,
and vector-based
rendering capabilities of
the browser. Either way,
'AJAX' is a lot catchier
than 'DHVAJAX.'
Accordingly, it's likely
that developers will
continue to use it for a
broad spectrum of uses.
So, it's important to
understand the 'quantum
states' the term has
taken on.
SYS-CON India News Desk
wrote: Tightly defined,
AJAX simply describes a
technology that
transports information to
and from the browser and
not how that information
is displayed. To purists,
AJAX is about
communicating
asynchronously from the
browser using JavaScript
and XML, nothing more. To
others, through their
experiences with Google
Maps and Yahoo!'s new
e-mail offering, AJAX
represents a desktop-like
GUI that leverages the
pre-existing HTML, DHTML,
and vector-based
rendering capabilities of
the browser. Either way,
'AJAX' is a lot catchier
than 'DHVAJAX.'
Accordingly, it's likely
that developers will
continue to use it for a
broad spectrum of uses.
So, it's important to
understand the 'quantum
states' the term has
taken on.
n d wrote: Tightly
defined, AJAX simply
describes a technology
that transports
information to and from
the browser and not how
that information is
displayed. To purists,
AJAX is about
communicating
asynchronously from the
browser using JavaScript
and XML, nothing more. To
others, through their
experiences with Google
Maps and Yahoo!'s new
e-mail offering, AJAX
represents a desktop-like
GUI that leverages the
pre-existing HTML, DHTML,
and vector-based
rendering capabilities of
the browser. Either way,
'AJAX' is a lot catchier
than 'DHVAJAX.'
Accordingly, it's likely
that developers will
continue to use it for a
broad spectrum of uses.
So, it's important to
understand the 'quantum
states' the term has
taken on.
SYS-CON Italy News Desk
wrote: Tightly defined,
AJAX simply describes a
technology that
transports information to
and from the browser and
not how that information
is displayed. To purists,
AJAX is about
communicating
asynchronously from the
browser using JavaScript
and XML, nothing more. To
others, through their
experiences with Google
Maps and Yahoo!'s new
e-mail offering, AJAX
represents a desktop-like
GUI that leverages the
pre-existing HTML, DHTML,
and vector-based
rendering capabilities of
the browser. Either way,
'AJAX' is a lot catchier
than 'DHVAJAX.'
Accordingly, it's likely
that developers will
continue to use it for a
broad spectrum of uses.
So, it's important to
understand the 'quantum
states' the term has
taken on.
m n wrote: Tightly
defined, AJAX simply
describes a technology
that transports
information to and from
the browser and not how
that information is
displayed. To purists,
AJAX is about
communicating
asynchronously from the
browser using JavaScript
and XML, nothing more. To
others, through their
experiences with Google
Maps and Yahoo!'s new
e-mail offering, AJAX
represents a desktop-like
GUI that leverages the
pre-existing HTML, DHTML,
and vector-based
rendering capabilities of
the browser. Either way,
'AJAX' is a lot catchier
than 'DHVAJAX.'
Accordingly, it's likely
that developers will
continue to use it for a
broad spectrum of uses.
So, it's important to
understand the 'quantum
states' the term has
taken on.
h n wrote: Tightly
defined, AJAX simply
describes a technology
that transports
information to and from
the browser and not how
that information is
displayed. To purists,
AJAX is about
communicating
asynchronously from the
browser using JavaScript
and XML, nothing more. To
others, through their
experiences with Google
Maps and Yahoo!'s new
e-mail offering, AJAX
represents a desktop-like
GUI that leverages the
pre-existing HTML, DHTML,
and vector-based
rendering capabilities of
the browser. Either way,
'AJAX' is a lot catchier
than 'DHVAJAX.'
Accordingly, it's likely
that developers will
continue to use it for a
broad spectrum of uses.
So, it's important to
understand the 'quantum
states' the term has
taken on.
h h wrote: Tightly
defined, AJAX simply
describes a technology
that transports
information to and from
the browser and not how
that information is
displayed. To purists,
AJAX is about
communicating
asynchronously from the
browser using JavaScript
and XML, nothing more. To
others, through their
experiences with Google
Maps and Yahoo!'s new
e-mail offering, AJAX
represents a desktop-like
GUI that leverages the
pre-existing HTML, DHTML,
and vector-based
rendering capabilities of
the browser. Either way,
'AJAX' is a lot catchier
than 'DHVAJAX.'
Accordingly, it's likely
that developers will
continue to use it for a
broad spectrum of uses.
So, it's important to
understand the 'quantum
states' the term has
taken on.
n jh\\ wrote: Tightly
defined, AJAX simply
describes a technology
that transports
information to and from
the browser and not how
that information is
displayed. To purists,
AJAX is about
communicating
asynchronously from the
browser using JavaScript
and XML, nothing more. To
others, through their
experiences with Google
Maps and Yahoo!'s new
e-mail offering, AJAX
represents a desktop-like
GUI that leverages the
pre-existing HTML, DHTML,
and vector-based
rendering capabilities of
the browser. Either way,
'AJAX' is a lot catchier
than 'DHVAJAX.'
Accordingly, it's likely
that developers will
continue to use it for a
broad spectrum of uses.
So, it's important to
understand the 'quantum
states' the term has
taken on.
ajax news desk wrote:
Tightly defined, AJAX
simply describes a
technology that
transports information to
and from the browser and
not how that information
is displayed. To purists,
AJAX is about
communicating
asynchronously from the
browser using JavaScript
and XML, nothing more. To
others, through their
experiences with Google
Maps and Yahoo!'s new
e-mail offering, AJAX
represents a desktop-like
GUI that leverages the
pre-existing HTML, DHTML,
and vector-based
rendering capabilities of
the browser. Either way,
'AJAX' is a lot catchier
than 'DHVAJAX.'
Accordingly, it's likely
that developers will
continue to use it for a
broad spectrum of uses.
So, it's important to
understand the 'quantum
states' the term has
taken on.
AJAXWorld News Desk
wrote: Tightly defined,
AJAX simply describes a
technology that
transports information to
and from the browser and
not how that information
is displayed. To purists,
AJAX is about
communicating
asynchronously from the
browser using JavaScript
and XML, nothing more. To
others, through their
experiences with Google
Maps and Yahoo!'s new
e-mail offering, AJAX
represents a desktop-like
GUI that leverages the
pre-existing HTML, DHTML,
and vector-based
rendering capabilities of
the browser. Either way,
'AJAX' is a lot catchier
than 'DHVAJAX.'
Accordingly, it's likely
that developers will
continue to use it for a
broad spectrum of uses.
So, it's important to
understand the 'quantum
states' the term has
taken on.
SYS-CON Italy News Desk
wrote: Tightly defined,
AJAX simply describes a
technology that
transports information to
and from the browser and
not how that information
is displayed. To purists,
AJAX is about
communicating
asynchronously from the
browser using JavaScript
and XML, nothing more. To
others, through their
experiences with Google
Maps and Yahoo!'s new
e-mail offering, AJAX
represents a desktop-like
GUI that leverages the
pre-existing HTML, DHTML,
and vector-based
rendering capabilities of
the browser. Either way,
'AJAX' is a lot catchier
than 'DHVAJAX.'
Accordingly, it's likely
that developers will
continue to use it for a
broad spectrum of uses.
So, it's important to
understand the 'quantum
states' the term has
taken on.
SYS-CON Australia News
Desk wrote: Tightly
defined, AJAX simply
describes a technology
that transports
information to and from
the browser and not how
that information is
displayed. To purists,
AJAX is about
communicating
asynchronously from the
browser using JavaScript
and XML, nothing more. To
others, through their
experiences with Google
Maps and Yahoo!'s new
e-mail offering, AJAX
represents a desktop-like
GUI that leverages the
pre-existing HTML, DHTML,
and vector-based
rendering capabilities of
the browser. Either way,
'AJAX' is a lot catchier
than 'DHVAJAX.'
Accordingly, it's likely
that developers will
continue to use it for a
broad spectrum of uses.
So, it's important to
understand the 'quantum
states' the term has
taken on.
gopal wrote: What State
do you think the reusable
GUI Classes for Alax/RIA
Applications are in?
http://cbsdf.com/misc_doc
s/why-gui-api.htm
http://
cbsdf.com/misc_docs/gui-a
pi-brief.htm
news desk wrote: Tightly
defined, AJAX simply
describes a technology
that transports
information to and from
the browser and not how
that information is
displayed. To purists,
AJAX is about
communicating
asynchronously from the
browser using JavaScript
and XML, nothing more. To
others, through their
experiences with Google
Maps and Yahoo!'s new
e-mail offering, AJAX
represents a desktop-like
GUI that leverages the
pre-existing HTML, DHTML,
and vector-based
rendering capabilities of
the browser. Either way,
'AJAX' is a lot catchier
than 'DHVAJAX.'
Accordingly, it's likely
that developers will
continue to use it for a
broad spectrum of uses.
So, it's important to
understand the 'quantum
states' the term has
taken on.
news desk wrote: Tightly
defined, AJAX simply
describes a technology
that transports
information to and from
the browser and not how
that information is
displayed. To purists,
AJAX is about
communicating
asynchronously from the
browser using JavaScript
and XML, nothing more. To
others, through their
experiences with Google
Maps and Yahoo!'s new
e-mail offering, AJAX
represents a desktop-like
GUI that leverages the
pre-existing HTML, DHTML,
and vector-based
rendering capabilities of
the browser. Either way,
'AJAX' is a lot catchier
than 'DHVAJAX.'
Accordingly, it's likely
that developers will
continue to use it for a
broad spectrum of uses.
So, it's important to
understand the 'quantum
states' the term has
taken on.
From Application
Virtualization to Xen, a
round-up of the
virtualization themes &
topics being discussed in
NYC June 23-24, 2008 by
the world-class speaker
faculty at the 3rd
International
Virtualization Conference
& Expo being held by
SYS-CON Events in The
Roosevelt Hotel, in mi
DreamFace DataWidgets
have gotten a lot of
press lately, but what
are Woodgets? DreamFace
Interactive CEO, Olivier
Poupeney gets specific
about woodgets while
presenting key
differentiators of
DreamFace's Web 2.0 Open
Source Framework in his
interview with Jeremy
Geelan for SYS-C
At Java One this week Sun
has been selling its year
-old-but-still-upcoming -
and definitely
late-to-the-party - Adobe
AIR- and Microsoft
Silverlight-competitive
JavaFX Rich Client
environment as a
potential
revenue-generator capable
of putting ads on mobile
applications and JavaF
Payless Car Rental has
launched an iPhone and
iPod Touch optimized
website. Payless Car
Rental is a car rental
agency that built a
customized version of its
website for the iPhone
and iPod Touch. The
homepage of Payless'
iPhone interface also
features a 'Call to Book'
button that
Alpha Software is now
shipping Alpha Five
Platinum Edition, the
ninth release of the
company's flagship Web
database development
platform. It's a
development tool that can
visually build
AJAX-powered
applications, integrate
SQL databases with
drag+drop simplicity, and
deliver ent
May. 15, 2008 03:45 PM
SUBSCRIBE TO THE WORLD'S MOST POWERFUL NEWSLETTERS
SUBSCRIBE TO OUR RSS FEEDS & GET YOUR SYS-CON NEWS LIVE!
Click to Add our RSS Feeds to the Service of Your Choice: