• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

AJAX - a few questions

 
Greenhorn
Posts: 4
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,

Can AJAX be used with Struts--Or is it more of a replacement for Struts?

What do the letters AJAX stand for?

Thanks
LuAnn
 
Greenhorn
Posts: 16
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
AJAX means Asynchronous JavaScript and XML. Its a very interesting technique that involves different technologies. I recommend that you read the four articles in the link below. They explain really well the fundamentals of AJAX while bringing some basic code too.

http://www-128.ibm.com/developerworks/views/web/libraryview.jsp?search_by=Mastering+Ajax
 
Ranch Hand
Posts: 100
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
While the buzz-word "AJAX" does mean Asychronous JavaScript and XML, it should be noted that the communications with the servlet need not be Asychronous; it can very well be Synchronous if that is what your specific application requires. Nor does the format of the data transferred to the browser need to be XML. It can just as easily be JSON (JavaScript Object Notation), plain text or some other format of your choice (if you like writing parsers, that is). About the only part of the acronym that is needed is the JavaScript (but I wouldn't bet against it even being possible at some point to do the same thing with VBScript, if one were so inclined).
 
reply
    Bookmark Topic Watch Topic
  • New Topic