GWT front-end with PHP backend

2010-06-12 Thread rajath
Hi all, I recently tried my hand with GWT hosted on GAE/J, and found it to be really good, especially considering that i did not have to learn javascript. I want to try to build the front end with GWT, but for the back end, we already have a php server which gives json data over restful urls. I

Re: GWT front-end with PHP backend

2010-06-12 Thread Muhammad Saifullah
gwt created js is nothing but a normal JS ,executed in browser. so backend is either PHP or Java. if you use ajax in GWT and server side is PHP then you use RequestBuilder Class. if server side is Java then you may use either RequestBuilder/GWT.create(abc.class); On Sat, Jun 12, 2010 at 2:17 AM,

Re: GWT front-end with PHP backend

2010-06-12 Thread tyler
Hi Rajath, I've been using GWT with PHP backends, almost exclusively, with great success. The GWT docs have a pretty good tutorial. http://code.google.com/webtoolkit/doc/latest/tutorial/JSON.html#client Just ignore Section 1 (Creating a source of JSON data), which talks about implementing the

Re: GWT front-end with PHP backend

2010-06-12 Thread Subhrajyoti Moitra
http://code.google.com/webtoolkit/doc/latest/tutorial/Xsite.html For cross site requests. It also uses PHP script in the example. Subhro. On Sun, Jun 13, 2010 at 10:04 AM, tyler ty...@thamtech.com wrote: Hi Rajath, I've been using GWT with PHP backends, almost exclusively, with great