| By Edmond Woychowsky | Article Rating: |
|
| September 30, 2006 10:30 AM EDT | Reads: |
21,257 |
Everyone has one or two words or phrases that people associate with them. For example, I always think of my friend Rob eating squid when I hear the words "What do you mean it's not chicken?" Just thinking about those words is enough to transport me through the years to that moment. And the look on his face still makes me smile.
Of course there can be some painful associations too. Like the words "I could code it in about an hour," which will forever remind me of a former manager who was fond of boasting about his prowess as a developer. The fact that he could barely turn a machine on never entered into it. In his mind he was the greatest developer who ever lived and the fact that some tasks took others more than an hour only served to reinforce his belief.
Somewhere between these two poles are the feelings I get when I hear the words "It doesn't blink." That was what the guy kept saying over and over again as I demonstrated an AJAX application. What this person, who remained true to his mainframe roots, was attempting to say was that the page wasn't going through the normal unload/reload cycle.
Because I'm not fond of being kept in the dark myself I made an effort to explain how the application worked. It went something like this: "Instead of using the browser's standard unload/reload cycle to communicate with the Web server client-side JavaScript uses the XMLHTTP request object to communicate directly with the server. This means that less information is passed back and forth so that this kind of application is inherently faster than a traditional Web application. It doesn't 'blink,' as you so put it, because the client-side JavaScript is only updating the parts of the page that changed instead of the whole page."
This was several years ago, years before Jesse James Garrett's AJAX article, and looking back now I suppose I expected too much of most of the people in the room. For some reason I expected immediate acceptance of the application I had written by everyone there. My expectations were dashed when the "it doesn't blink" guy latched on a single phrase like a pit bull, the phrase was, client-side JavaScript.
Because of this phrase, the mainframe developer, still reeling from the job market downturn after Y2K, uttered a phrase of his own in the form of a question, "So, it's a mockup?"
"No, it's communicating with the Web server using client-side JavaScript and the XMLHTTP request object. It's a working application," I replied.
"But it doesn't blink!" he said.
This banter continued for about two hours and would probably still be going on had one user not made a suggestion. He wanted the application to look up a specific item of information. So we did. When the information was displayed in the Web browser, he uttered a remark of his own, "It's not a mockup."
The user elaborated by saying that he had entered the information we displayed five minutes before the meeting began. He earned a glare from the mainframe developer and my undying gratitude.
Until recently scenes like this were pretty much par for the course when demonstrating AJAX applications. But now, since Garrett's AJAX article, everyone wants to jump on the AJAX bandwagon. The rapid adoption of AJAX leaves only one question: other than using the XMLHTTP request object how does one go about writing an AJAX application?
Unfortunately, there's no simple answer, but there's a way to make the question simpler by concentrating on one aspect of it. Look at the problem as putting a Web front-end on a Web Service. So, since we're hip-deep in Web Services - or at least books and articles about how to create Web Services - let's look at creating a pretty front-end for a Web Service.
Because most Web Services use SOAP, the Simple Object Access Protocol, we'll start by looking at the SOAP request:
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/">
<soap:Body>
<getItems xmlns="http://tempuri.org/">
<guild_item_id>string</guild_item_id>
<guild_id>string</guild_id>
</getItems>
</soap:Body>
</soap:Envelope>
As incomprehensible as the above SOAP request appears to those unfamiliar with the protocol it's actually quite simple. Most of what you see above is a wrapping that identifies it as a SOAP request, essentially any element with the namespace "soap." The stuff that works with the Web Service, getItems, is with the soap:Body tags and it invokes a Web Service named date passing the value "string" in the guild_item_id and guild_id parameters.
All right, now that we know what to send, the next question is how to create an XMLHTTP request object on the client-side to send it to the Web server? This is one of those times when a line in my old resume comes into play. No, not the one about being an escaped mental patient, the one about cross-browser development, which is roughly the same thing. Yes, there's Microsoft's way and then there's everyone else's way.
Why do I feel like I just said a bad word in the pages of LinuxWorld? I feel dirty.
One of the differences between my favorite browser, Firefox, and Internet Explorer is something called ActiveX. Only Microsoft uses it, so it can't be found in Firefox, Flock, or SeaMonkey. And that means that a little more coding is required to consistently create an XMLHTTP request object. What we end up with is code like this:
try {
objXMLHTTP = new ActiveXObject('Microsoft.XMLHTTP');
}
catch(e) {
objXMLHTTP = new XMLHttpRequest();
}
Not, bad, but to quote Michael Kane, "What good is a mace if you don't use it?" But before we use it let's take a look at all of the bells and whistles that go along with it (see Table 1).
Published September 30, 2006 Reads 21,257
Copyright © 2006 SYS-CON Media, Inc. — All Rights Reserved.
Syndicated stories and blog feeds, all rights reserved by the author.
More Stories By Edmond Woychowsky
Edmond Woychowsky is the author of Prentice Hall's AJAX: Creating Web Pages with Asynchronous JavaScript and XML (to publish August 2006). A graduate of Middlesex Country College and Penn State, Edmond Woychowsky began his professional life at Bell Labs as a dinosaur writing recursive assembly language programs for use in their DOSS order entry system. Throughout his career Ed has worked in the banking, insurance, pharmaceutical and manufacturing industries slowly sprouting feathers and evolving into a web developer. Best known for his often unique articles on the TechRepublic web site as well as his ability to explain how Muenchian grouping works in small words. Currently he can be found working in New Jersey as a consultant, applying both AJAX and XSLT to problems in often bizarre ways and looking forward to his next meal.
![]() |
j j 09/30/06 10:45:41 AM EDT | |||
Everyone has one or two words or phrases that people associate with them. For example, I always think of my friend Rob eating squid when I hear the words 'What do you mean it's not chicken?' Just thinking about those words is enough to transport me through the years to that moment. And the look on his face still makes me smile. |
||||
![]() |
j j 09/29/06 01:30:15 PM EDT | |||
Everyone has one or two words or phrases that people associate with them. For example, I always think of my friend Rob eating squid when I hear the words 'What do you mean it's not chicken?' Just thinking about those words is enough to transport me through the years to that moment. And the look on his face still makes me smile. |
||||
![]() |
AJAXWorld News Desk 09/29/06 12:36:33 PM EDT | |||
Everyone has one or two words or phrases that people associate with them. For example, I always think of my friend Rob eating squid when I hear the words 'What do you mean it's not chicken?' Just thinking about those words is enough to transport me through the years to that moment. And the look on his face still makes me smile. |
||||
![]() |
n d 08/27/06 12:20:48 PM EDT | |||
Everyone has one or two words or phrases that people associate with them. For example, I always think of my friend Rob eating squid when I hear the words 'What do you mean it's not chicken?' Just thinking about those words is enough to transport me through the years to that moment. And the look on his face still makes me smile. |
||||
![]() |
n d 08/27/06 12:20:40 PM EDT | |||
Everyone has one or two words or phrases that people associate with them. For example, I always think of my friend Rob eating squid when I hear the words 'What do you mean it's not chicken?' Just thinking about those words is enough to transport me through the years to that moment. And the look on his face still makes me smile. |
||||
![]() |
AJAXWorld News Desk 08/25/06 01:59:15 PM EDT | |||
Everyone has one or two words or phrases that people associate with them. For example, I always think of my friend Rob eating squid when I hear the words 'What do you mean it's not chicken?' Just thinking about those words is enough to transport me through the years to that moment. And the look on his face still makes me smile. |
||||
![]() |
AJAXWorld News Desk 08/25/06 01:58:57 PM EDT | |||
Everyone has one or two words or phrases that people associate with them. For example, I always think of my friend Rob eating squid when I hear the words 'What do you mean it's not chicken?' Just thinking about those words is enough to transport me through the years to that moment. And the look on his face still makes me smile. |
||||
![]() |
AJAXWorld News Desk 08/10/06 01:10:16 PM EDT | |||
Everyone has one or two words or phrases that people associate with them. For example, I always think of my friend Rob eating squid when I hear the words 'What do you mean it's not chicken?' Just thinking about those words is enough to transport me through the years to that moment. And the look on his face still makes me smile. |
||||
![]() |
AJAXWorld News Desk 08/09/06 07:35:49 PM EDT | |||
Everyone has one or two words or phrases that people associate with them. For example, I always think of my friend Rob eating squid when I hear the words 'What do you mean it's not chicken?' Just thinking about those words is enough to transport me through the years to that moment. And the look on his face still makes me smile. |
||||
![]() |
AJAXWorld News Desk 08/04/06 05:20:54 PM EDT | |||
Everyone has one or two words or phrases that people associate with them. For example, I always think of my friend Rob eating squid when I hear the words 'What do you mean it's not chicken?' Just thinking about those words is enough to transport me through the years to that moment. And the look on his face still makes me smile. |
||||
- Microsoft Tries Hadoop on Azure
- Asynchronous Logging Using Spring
- StorSimple Supports OpenStack
- What to Expect in 2012: Cloud Computing and Open Source Software
- Will PaaS Finally Bring Open Source Love to the Enterprise?
- AT&T Joins OpenStack, Floats Cloud Architect
- Linux Virtualization and Tired Open Source Myths
- Red Hat Sets Up GlusterFS Advisory Board
- OpenOffice.com Lives
- Selecting a Business Intelligence Solution
- Cloud Computing: A Platform-First Approach
- Forrester Wave: Open Source Business Intelligence
- Adobe Sends Flex to the Apache Foundation
- i-Technology in 2012: Five Industry Predictions
- Microsoft Tries Hadoop on Azure
- OpenXava 4.3: Rapid Java Web Development
- Asynchronous Logging Using Spring
- StorSimple Supports OpenStack
- What to Expect in 2012: Cloud Computing and Open Source Software
- Will PaaS Finally Bring Open Source Love to the Enterprise?
- AT&T Joins OpenStack, Floats Cloud Architect
- More Use Cases for Big Data Analytics
- Linux Virtualization and Tired Open Source Myths
- Red Hat Sets Up GlusterFS Advisory Board
- After Ubuntu, Windows Looks Increasingly Bad, Increasingly Archaic, Increasingly Unfriendly
- SCO CEO Posts Open Letter to the Open Source Community
- Simula Labs Launches Hosted Delivery Platform To Enable Enterprise Open Source Adoption
- Where Are RIA Technologies Headed in 2008?
- Source Claims SCO Will Sue Google
- How Open Is "Open"? – Industry Luminaries Join the Debate
- Latest SCO News is Plain Weird
- SCO Claims Linux Lifted ELF
- IBM Tells SCO Court It Can't Find AIX-on-Power Code
- Flashback: Investing in 'Professional Open Source' - Exclusive 2004 Interview with David Skok, Matrix Partners
- Developing an Application Using the Eclipse BIRT Report Engine API
- HP Starts Pushing Desktop Linux

















