AJAX is the new pink. In fact, Web 2.0 could be the internet revolution that makes even Bill Gates wonder about the future of software. The enhanced usability in AJAX implies a couple of things for web applications:
- Some of the controller logic is moved from the server to the client. Less CPU cycles on the server per page, more on the client.
- Clients make more frequent requests to the server, but with significantly smaller payloads. The business logic on the server is broken up into smaller, more self-contained XML services (SOAP, REST). …