Re: GWT RPC with Python

2009-11-04 Thread maksud
I am convinced JSON is the best options. I found two library basically same. http://code.google.com/p/lovely-gwt-jsonrpc/ and http://code.google.com/p/gwt-hermes/ Both have simmilar interface on client side. But I could not find the server side code

Re: GWT RPC with Python

2009-11-04 Thread Peter Quiel
I used gwt rpc with PHP and i run in a lot of trubble, have to update and debug my server code every time the gwt serialization changes and i spend a lot of time debugging the hole application. Its up to you but i would use JSON next time. Greetings, Peter On 3 Nov., 09:02, rjcarr wrote: > I'm

Re: GWT RPC with Python

2009-11-03 Thread rjcarr
I'm fairly certain that if you use Python then you can't use RPC Object Serialization. You'll have to make use of the JSON packages in order to make this work. Good luck! On Nov 2, 12:42 am, maksud wrote: > Hi, > > I am creating some application for google app engine with *python*. I am > usin

GWT RPC with Python

2009-11-02 Thread maksud
Hi, I am creating some application for google app engine with *python*. I am using *GWT* for the client side interface. But how to do RPC calls to python. I know Google App Engine java version could do that easily and I tested it well. But for Python what are the options. I tried http://code.goo