Re: GWT with non-Java backend

2008-12-01 Thread Eduardo Guardiola
I'm using .NET on the server (i miss Java, haven't had choice). Jayrock as JSON-RPC. And a custom implementation of JSON-RPC for GWT using RequestBuilder of course. http://jayrock.berlios.de/ On 1 dic, 15:43, Johan Rydberg <[EMAIL PROTECTED]> wrote: > Joshua Partogi skrev: > > > Dear all, > > >

Re: GWT with non-Java backend

2008-12-01 Thread Johan Rydberg
Joshua Partogi skrev: > Dear all, > > Has anyone worked GWT with non-Java backend (like PHP or Rails) and > send it with AJAX Http request? Does it work good? I am wondering > whether this is a good approach. I would appreciate any experience > shared here. I've developed a GWT RPC gateway to Py

Re: GWT with non-Java backend

2008-12-01 Thread Reinier Zwitserloot
Yes, tons of people have used GWT on the front and something that isn't java on the back-end. You can transfer data using JSON, XML (but, really, don't. XML is stupid as a wire protocol), or whatever binary format you think is useful. The only caveat (and this applies to using GWT-RPC as well), i

Re: GWT with non-Java backend

2008-12-01 Thread Peter Ondruška
I use GWT with Google App Engine backend with RequestBuilder. 2008/12/1, ajay jetti <[EMAIL PROTECTED]>: > This should help i think > > http://angel.hurtado.googlepages.com/tutorialgwt2 > > yours > > Ajay > > > > --~--~-~--~~~---~--~~ You received this message bec

Re: GWT with non-Java backend

2008-11-30 Thread ajay jetti
This should help i think http://angel.hurtado.googlepages.com/tutorialgwt2 yours Ajay --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to Google-Web-Tool

Re: GWT with non-Java backend

2008-11-30 Thread Joshua Partogi
Thank you so much Martin for the hint. :-) I am more confident now to use GWT with non-Java backend. Because I thought people only use GWT with Java on the backend. Cheers. On Dec 1, 12:15 pm, "Martin Gorostegui" <[EMAIL PROTECTED]> wrote: > Yes, > > I´m working with GWT with a PHP backend and I

Re: GWT with non-Java backend

2008-11-30 Thread [EMAIL PROTECTED]
I too have worked on GWT front with PHP in the backend, communicating as Martin stated using RequestBuilder and exclusively JSON. Quite simple really. I've also built a prototype Ruby backend to the same frontend and it too was pretty easy, and I'm a bit of a Ruby noob. Martin's guidance is dead

Re: GWT with non-Java backend

2008-11-30 Thread Martin Gorostegui
Yes, I´m working with GWT with a PHP backend and I know many people in this list also do that. It is an excellent approach if you can't have a Java backend but want to have all the benefits of GWT (except for the optimised GWT Java RPC). Basically what you should do is instead of using GWT Java RP