vote up -2 vote down star
2

I'm about to begin building a real-time interactive website that will allow the user to create various objects and drag and move them around inside the browser, similar to, but very different than the newly announced Google Wave. Are there any newer methodologies than AJAX being used right now for creating real-time interactive web pages? If not, are there any methodologies/technologies that are in their early stages that you feel have the potential to be the next AJAX?

Thanks in advance for all your thoughts!


77% accept rate
10  
ajax is dead, long live static pages. – Luca Matteis Jul 12 at 3:47
2  
That's like asking if HTML is dead. – musicfreak Jul 12 at 3:48
4  
God I love this ajax comment box!!!111!!!! – Luca Matteis Jul 12 at 3:57
1  
@musicfreak, I didn't ask if AJAX was dead. open your eyes genius. why don't you go do what egotistical moderating losers do best...go interrupt and close out some really good discussions taking place somewhere on SO. @Luca, if it's not an argumentative question, you're certainly trying your best to make it that way. @everyone, when did SO become so restrictive? myself and a few others have had to leave SO a few times recently and go to other forums to have some thoughtful discussions about software development. what happened? was losing visitors the goal? – Dr Dork Jul 12 at 4:06
2  
@Beeph: Why are you being a jerk? – Lucas McCoy Jul 12 at 4:32
show 13 more comments

locked by Jeff Atwood Jul 12 at 5:29

closed as not a real question by Lucas McCoy, musicfreak, Jon Tackabury, Nosredna, Mauricio Scheffer Jul 12 at 4:46

8 Answers

vote up 1 vote down check

Old does not imply dead or broken or even undesirable.

So, I would say yes. It's been around for a long time and many mature frameworks are built around it. Consider that ASP.NET Ajax, Google Web Toolkit, and jQuery are extremely popular in today's development world and we see Ajax everywhere. Perhaps mature is the best word.

link|flag
vote up 4 vote down

NO, it was just invented around 1999 or so!

Companies using AJAX:

Also read wikipedia's Rationale & Critique on AJAX.

link|flag
1  
I'm tempted to +1 this just because I wrote the majority of those sections of the article. :) – musicfreak Jul 12 at 3:52
@musicfreak - i'll do it for you :P +1 – Shadi Almosri Jul 12 at 4:17
@musicfreak: Thanks for contributing to wikipedia (I don't know what I would do without it). Give me rep the I need it bad man (I'm an addict). – Lucas McCoy Jul 12 at 4:30
@Lucas: Done. :) – musicfreak Jul 12 at 5:22
vote up 2 vote down

Json is a lighter-weight alternative to the X part of Ajax (XML), but obviously it isn't a full replacement. I think Ajax will be with us for a while longer.

link|flag
Ajax doesn't have to use XML. You can use JSON and still call it Ajax. – musicfreak Jul 12 at 3:56
1  
AJAJ just doesn't have the same ring to it. :) AJ² maybe! – Jason Jul 12 at 3:58
Last time I looked it up, it didn't have to be async, JavaScript, or XML! – Nosredna Jul 12 at 4:45
@Jason: How about "JSON And Javascript (Asynchronous)", aka "JAJA" ;) – DisgruntledGoat Jul 12 at 21:45
vote up 1 vote down

That's a bit of strange question, "Is it old yet?". I think its more a case of Ajax now being a relatively mature and stable tech. There are some good frameworks out there you could use, like jQuery. Also, it shouldn't really matter which technology you use, as long as it does the job.

link|flag
or prototype, or dojo or mootools... etc – txwikinger Jul 12 at 4:04
Thanks, its 5am where I am, so Ajax frameworks aren't coming so quickly to mind. – Pauk Jul 12 at 4:13
vote up 1 vote down

AJAX will be "old" when HTML/DHTML standarts will be changed. I can say that nothing was seriously changed since we use ourself "ajax" in 1999-2000.

link|flag
vote up 1 vote down

What does the question mean? Alternatives to Ajax? I assume that means anything that lets client and server communicate without a page refresh. So that would be:

  1. Flash
  2. Silverlight
  3. Java
  4. Any other plugin or addon that allows communication between server and client without a page refresh.

So Ajax is and will be how you do it in the browser "natively." The others are extensions to the browser.

link|flag
vote up 0 vote down

wow, i forgot how mean some of the SO users can be sometimes (see top-level comments). ease up, guys, beeps is simply asking for your thoughts. if anything, you should be flattered.

i don't know much about ajax or web development in general, but if google's using ajax to develop their latest and greatest web apps, then i wouldn't worry about it being outdated when building your website. good luck, it sounds new and attractive :)

link|flag
vote up 0 vote down

As I see it there are a variety of mainstream and competing methodologies for creating rich web based applications. One is the AJAX Javascript model another is Adobe Actionscript/Flex model which uses the Flash player plugin as the platform. Another is Silverlight similar to Flash but uses Microsoft technologies and C#.

AJAX

Pros: Uses web standards.

Can be run without plugin support.

Cons:

Browsers can have quirks in terms of support for different browsers. A framework helps with this though.

Different performance characteristics depending on browser. Safari and Chrome seem to have the fastest Javascript support.

Standalone Javacript can be time consuming to write. Best accomplished with a framework.

Flex/Flash/Actionscript

Pros:

Strong built in media support inside flash for working with graphics and video.

A single and consistent deployment platform (Flash player). If your browser and OS supports Flash then it supports your application runtime environment.

Cons: Flash is a proprietary plugin not supported on all clients (iPhone, and some open source OSes for example).

Dependent on one vendor to improve performance and maintain runtime environment.

Silverlight has similar pros and cons of Flash, but is not as widely supported as Flash player and/or AJAX.

Try googling RIA, Rich Internet Applications and you will find a variety of information about the various technologies available for building interactive web applications.

Other technologies include Java applets, but are not as common.

The larger question is do you want to use standard browser technologies or a proprietary framework/plugin? In the long run using AJAX will give you the most flexibility, probably the largest swath of support including clients that don't support Flash player, in particular the iPhone. But there may be very specific advantages to using a proprietary plugin like Flash or Silverlight, including DRM if you app requires it. But there are subtle trade offs.

As far as frameworks with AJAX go there is a large selection. Some notable ones include

Cappucino Web Framework

SproutCore

Google Web Toolkit

Jquery

Prototype

YUI, Yahoo! User Interface Library

and many others.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.