• 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
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Learning AJAX from Servlet/JSP

 
Ranch Hand
Posts: 10198
3
Mac PPC Eclipse IDE Ubuntu
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Prabakhar,

I'm new to AJAX but have some experience in Java/JSP/Servlets. How good will this book suit me in getting to know about AJAX? How good after I study the book will I be able to practically use AJAX in my projects??

[Edit to provide meaningful topic]
[ April 03, 2007: Message edited by: David O'Meara ]
 
author
Posts: 50
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
This book introduces you to gwt, but assumes familiarity with Java, HTML and css.
 
Ranch Hand
Posts: 1325
Android Java Windows
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I copied the syntax from book details page..

Who this book is written for

Readers will need experience writing non-trivial applications using Java. Experience with developing web interfaces is useful, but knowledge of JavaScript and DHTML is not required� GWT takes care of that!

 
Ranch Hand
Posts: 2108
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Anyone know any book for working with ajax, in a jsp/servlet system?

Some of my questions are:1) does the ajax call talk to the servlet exactly the same as the ordinary http call to the servlet, i.e., in the same session, with the same session context available to that servlet, etc.?
 
Sheriff
Posts: 67747
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator

Originally posted by Jesus Angeles:
Anyone know any book for working with ajax, in a jsp/servlet system?



Next week's book promotion in this forum (this forum's been busy lately!) will be for Ajax in Practice which I co-authored. The backend components for most of the examples in the book is Java.

Some of my questions are:1) does the ajax call talk to the servlet exactly the same as the ordinary http call to the servlet, i.e., in the same session, with the same session context available to that servlet, etc.?



Yes. From the point of view of a serlvet or JSP, the request is the same as any other request. The browser takes care of setting all the appropriate headers just as if the request were initiated by a link or a form submisssion.

The difference comes in what your code does with those requests.
[ April 07, 2007: Message edited by: Bear Bibeault ]
 
Jesus Angeles
Ranch Hand
Posts: 2108
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Thanks. I need that book.
 
Bear Bibeault
Sheriff
Posts: 67747
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Then be sure to participate in next week's discussion and you could win one!
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic