Re: Calling Server Side code on Client Side

2010-12-11 Thread Tarun
Hi David, I tried that but it seems GWT doesn't allow the inclusion of any kind of server code in the shared package. I tried to put the Persistent Classes in the shared folder but it still doesn't work. This doesn't seem to be fair, how can one make AJAX applications without calling the server

Re: Calling Server Side code on Client Side

2010-12-11 Thread nacho
Hi Taurun. You can use in your client code classes that you are using in the server. For example, your model classes. But, you can't use in those classes any class that you don't have the source. Suposse that you have a model class: User.class, in this class, all the code must be translatable

Calling Server Side code on Client Side

2010-11-29 Thread Tarun
I am creating a GWT based application using Google App Engine for Java. I have created a persistent class whose data is to be shown in a widget using GWT RPC calls. I run a query on the server side and pass its results as a List of objects of the persistent class in the *ServiceImpl class on the