| Author |
GWT and ajax
|
Jasvir Rupana
Ranch Hand
Joined: Oct 13, 2010
Posts: 52
|
|
Hi,
I am planning to develop a website, i want it to be in Ajax to make it more fast. can some one suggest me what is actually GWT ? is it a front end technology only ? can i integrate this with any other server side projects or not?
|
 |
Maneesh Godbole
Saloon Keeper
Joined: Jul 26, 2007
Posts: 8439
|
|
GWT is a client side technology. You write Java code and the GWT compiler will convert it into JS. It will also optimize it for different browser/versions.
GWT provides a RPC mechanism which you can use to make asynchronous server side calls. You can integrate it with your existing project on the server side, provided you use your server side code for data manipulation and not page manipulation.
Recommended reading http://code.google.com/webtoolkit/overview.html
|
[Donate a pint, save a life!] [How to ask questions] [Onff-turn it on!]
|
 |
 |
|
|
subject: GWT and ajax
|
|
|