Re: GWT client files in WEB-INF/classes

2009-06-24 Thread Rajeev Dayal
Sorry, as I wrote that last response, I realized that I was incorrect. Reflection does not come into play when dealing with GWT RPC types, since GWT's RPC servlet must know about all possible types that could be sent across the wire. I believe that GWT's RPC generator will compute the exact set of

Re: GWT client files in WEB-INF/classes

2009-06-24 Thread Rajeev Dayal
Hey Thomas, Responses inline: On Wed, Jun 24, 2009 at 12:19 PM, Thomas Broyer wrote: > > > > On 24 juin, 17:00, Rajeev Dayal wrote: > > Hi Clanusse, > > > > You are right - the only class files that are needed are those that are > used > > by RPC, which are: > > > > -your sync interface > > -an

Re: GWT client files in WEB-INF/classes

2009-06-24 Thread Thomas Broyer
On 24 juin, 17:00, Rajeev Dayal wrote: > Hi Clanusse, > > You are right - the only class files that are needed are those that are used > by RPC, which are: > > -your sync interface > -any types that can be passed across the wire over RPC > -your server-side classes (including the implementation

Re: GWT client files in WEB-INF/classes

2009-06-24 Thread Rajeev Dayal
Hi Clanusse, You are right - the only class files that are needed are those that are used by RPC, which are: -your sync interface -any types that can be passed across the wire over RPC -your server-side classes (including the implementation of your sync interface) Unfortunately, the plugin's dep

GWT client files in WEB-INF/classes

2009-06-23 Thread clanusse
I'm using Eclipse with the Google GAE/GWT plugin to build a combined GAE/GWT project. I've noticed that Eclipse builds all my classes and places them in the war/WEB-INF/classes directory even if they are just GWT client code that also gets crossed compiled to javascript. Is this necessary for de