YOUR FEEDBACK
More on the Software Assembly Question - Do Design Patterns Help?
Yanic wrote: Hi, > UML and MDA are being changed to be more data and doc...
SOA World Conference
Virtualization Conference
$50 Savings Expire May 23, 2008... – Register Today!

SYS-CON.TV

2007 West
GOLD SPONSORS:
Active Endpoints
Your SOA Needs BPEL for Orchestration
BEA
Virtualized SOA: Adaptive Infrastructure for Demanding Applications
Nexaweb
Overcoming Bandwidth Challenges with Nexaweb
TIBCO
What is Service Virtualization?
SILVER SPONSORS:
WSO2
Using Web Services Technologies and FOSS Solutions
Click For 2007 East
Event Webcasts

2008 East
PLATINUM SPONSORS:
Appcelerator
Think Fast: Accelerate AJAX Development with Appcelerator
GOLD SPONSORS:
DreamFace Interactive
The Ultimate Framework for Creating Personalized Web 2.0 Mashups
ICEsoft
AJAX and Social Computing for the Enterprise
Kaazing
Enterprise Comet: Real–Time, Real–Time, or Real–Time Web 2.0?
Nexaweb
Now Playing: Desktop Apps in the Browser!
Sun
jMaki as an AJAX Mashup Framework
POWER PANELS:
The Business Value
of RIAs
What Lies Beyond AJAX?
KEYNOTES:
Douglas Crockford
Can We Fix the Web?
Anthony Franco
2008: The Year of the RIA
Click For 2007 Event Webcasts
TOP THREE LINKS YOU MUST CLICK ON


Book Review: Advanced AJAX by Shawn M. Lauriat
"Advanced AJAX: Architecture and Best Practices" (Prentice Hall, 2008, 360p)

Digg This!

Brian Dillard's "Agile AJAX" Blog

Because AJAX moves so much application logic from the server to the client, it forces many developers to master a wider range of web technologies than ever before. To work effectively on AJAX projects, front-end developers have to concern themselves with database performance, business logic and other server-side concerns. Back-end and middleware developers, meanwhile, have to make friends with XHTML, CSS, JavaScript and a wide range of browsers.

Sure, it's possible to develop AJAX apps in a siloed team environment. But it's not the easiest way, and it rarely provides the strongest results.

Shawn M. Lauriat's "Advanced Ajax: Architecture and Best Practices" (Prentice Hall, 2008, 360p) bridges the gap between developers with exclusive client- or server-side skills. By exploring tools, technologies and best practices for every layer of the AJAX programming model, this solid new programming manual promises to plug the holes in any developer's resume. Lauriat's tops-to-tails approach offers something for almost any developer, but it also guarantees most readers will find some sections remedial. As this review will demonstrate, that's not necessarily a liability.

The book's first four chapters focus almost exclusively on the client-side technologies that are my own personal speciality. Lauriat's announces his goals early, shortly after pointing out the introductory nature of many existing AJAX books and tutorials:

"This book, instead, looks at using Ajax to create rich, browser-based interfaces for enterprise-level web applications, taking into account the flexibility, reusability, scalability, and maintainability necessary for such an undertaking. Ajax does not exist in this book as the latest and greatest acronym to hit web development. It instead exists as a tool like any other - extremely useful in some instances and totally wrong in others."

This focus on AJAX as a means rather than an end continues in the author's examination of user-focused application design:

"Ajax-based functionality fits best where it makes a given task easier for the user, rather than just replicating functionality easily achieved by simpler, faster-developed means. Using half a dozen JavaScript files, numerous CSS files, and several Ajax calls just to render a company home page uses a lot of time and memory for very little benefit to the user."

Having established his mission statement, Lauriat dives right into the specific technologies and approaches that client-side Ajax demands. He makes the case for semantic markup, web standards, progressive enhancement and accessibility in a way that should compute for server-side developers who may be encountering these concepts in depth for the first time. Advanced AJAX doesn't tackle these concepts to the level that, say, Jeffrey Zeldman would, but Lauriat doesn't scrimp on the real-world details. He provides compelling examples of the way high-contrast design, resizable page layouts, easily targeted controls and even the draft ARIA spec can enhance accessibility and usability for everyone, not just disabled users.

Once he's covered the basics of how to use client-side technologies appropriately, the author examines the specifics of client-side architecture. He explains JavaScript's object model and prototype-based inheritance with the appropriate level of detail for programmers better versed in Java or other server-side languages. Extensive code examples eschew jQuery and other AJAX frameworks, allowing readers to understand the nuts and bolts of cross-browser JavaScript development. Here, again, Lauriat displays a knack for providing neither too little nor too much detail. He discusses design patterns and strategies for abstraction just like he discusses Ajax itself: as tools rather than mandates. Readers with previous exposure to MVC architecture and event-driven programming should gain a better understanding of those techniques. Novices, meanwhile, should learn enough to understand the code samples and perhaps find their curiosity piqued for further study.

Having covered client-side technologies and architecture, Lauriat finally turns to development and debugging tools. Validators, browser consoles and plug-ins, profiles and unit-testing frameworks all get their due. Here, as elsewhere, Lauriat delves into the nitty-gritty of developing applications for IE, Safari, Firefox and Opera. He suggests tools and techniques for each browser environment without getting into political asides. As with the earlier chapters, I came away with a more complete, holistic understanding of topics in which I already considered myself well-versed.

Taken as a whole, the client-focused chapters of Advanced AJAX are worth skimming even for senior client-side developers. For programmers just getting acquainted with the UI layer, these chapters provide an extremely concise, yet thorough treatment of a huge number of important topics. I'm extremely impressed with Lauriat's book, and I haven't even gotten to the sections that will cover the most new ground for me personally.

The book's remaining chapters deal with everything from security and database optimization to server-side architecture and game development.

The server-side portion of Advanced AJAX uses PHP code to illustrate its many and varied lessons about AJAX architecture. It's not that I have anything against the popular web-development framework and scripting language. It's just that, after spending my career in the ASP Classic and JSP trenches and slowly ramping up on Rails in the last year, I'm not the ideal target audience for these code samples. Adding "PHP" to the title of the book might have limited its potential audience, but it also would have been more accurate.

That said, there's a lot of value here for adherents of any server-side framework. Lauriat discusses each topic from a general perspective before diving into the code. The technical approach to a given problem would obviously differ by framework, but the high-level approach wouldn't. If you don't mind skimming past the content that doesn't apply to you, Lauriat's advice about developing stable, scalable, accessible and secure AJAX applications transcends framework allegiance.

Chapter 5, "Performance Optimization," delves into database performance, caching, profiling and debugging. Chapter 6, "Scalable, Maintainable Ajax," covers everything from modular architecture to the concatenation of CSS and JavaScript files for faster deployment to the client. Lauriat covers the basics of MVC development in Chapter 7, "Server-Side Application Architecture." Security gets its due in Chapter 8, "Keeping a Web Application Secure." These chapters will make quick reading for anyone not interested in the lengthy PHP code samples, but the general principles are solid and worth taking to heart.

The book's final few chapters prove the most compelling for a general web-development audience. Lauriat devotes an entire chapter to documentation, coding standards, programming guides and style guides - including a look at JSDoc, the open-source, automated JavaScript documentation tool. But it's Chapter 10, "Game Development," that brings everything together. Lauriat uses PHP and cutting-edge client-side code (via the HTML 5 canvas element) to build Universe Conflict, an AJAX implementation of the venerable Space War! shooter game. Given that most example applications tend toward e-commerce or CRUD admin interfaces, it's refreshing to see Ajax employed for something frivolous and fun. That said, Lauriat convincingly demonstrates that games require the same architectural and security principles as any other application. The author closes with some final, high-level conclusions in Chapter 11.

Overall, Advanced AJAX proved to be a worthwhile read despite my lack of PHP mojo. Of its 11 chapters, 5 1/2 are full of examples that could be applied to any development framework, while the other 5 1/2 are full of sage advice that requires translation for non-PHP platforms.

The publisher has made a sample chapter of the book available on its website.


Full disclosure: The author received a free promotional copy of this book for review.

About Brian J. Dillard
Brian J. Dillard joined Pathfinder Development in August 2007 as RIA Evangelist. After 12 years of focusing on the view layer of large consumer web apps, his role at Pathfinder Associates is one of research, development and ongoing commentary. He prototypes new rich UI features; contributes to open-source and client projects; and otherwise helps build Pathfinder's competency in the AJAX world. Along with Pathfinder CTO Dietrich Kappe, Dillard contributes to the 'Agile Ajax' blog (http://blogs.pathf.com/agileajax). He is also the project lead on Really Simple History, a JavaScript library for AJAX bookmark and back-button management.

LATEST AJAXWORLD STORIES
3rd International Virtualization Conference & Expo: Themes & Topics
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
AJAX World - You've Heard of Widgets, But What Are Woodgets?
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
JavaOne 2008: Sun Talks Up its Late-to-the-Party AIR-Silverlight Rival
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 Launches iPhone and iPod Touch Portal
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 Five Platinum Brings AJAX to the Enterprise
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
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:
Google Reader or Homepage Add to My Yahoo! Subscribe with Bloglines Subscribe in NewsGator Online
myFeedster Add to My AOL Subscribe in Rojo Add 'Hugg' to Newsburst from CNET News.com Kinja Digest View Additional SYS-CON Feeds
Publish Your Article! Please send it to editorial(at)sys-con.com!

Advertise on this site! Contact advertising(at)sys-con.com! 201 802-3021

SYS-CON FEATURED WHITEPAPERS

ADS BY GOOGLE