Re: Using class on both client and server sides

2009-08-24 Thread Thomas Broyer
On 24 août, 12:28, Ice13ill wrote: > And what if i want to use a package both on the client and server > side, but one of the classes has imports from app engine witch cannot > be used in GWT. Can i instruct the compiler (let's say in the .gwt.xml > file) to exclude a class from a package when

Re: Using class on both client and server sides

2009-08-24 Thread Ice13ill
And what if i want to use a package both on the client and server side, but one of the classes has imports from app engine witch cannot be used in GWT. Can i instruct the compiler (let's say in the .gwt.xml file) to exclude a class from a package when compiling ? On Jul 29, 6:18 pm, Nuno wrote:

Re: Using class on both client and server sides

2009-07-30 Thread Dean S. Jones
this is the correct response, tho, I put all inter-client-server classes in "shared/rpc", or some such package. On Jul 29, 11:10 am, Paul Robinson wrote: > You want this in your gwt.xml file: >     >     > > Note that if any element appears in your gwt.xml, then the > implied client source pa

Re: Using class on both client and server sides

2009-07-29 Thread Nuno
Also, if you class is just a pojo you dont really need to create it in two places... the server code can access all of your client code. You just need to make the classes you want to transport from client to server or vice versa. In your example Contact may stay in the client package, and if you n

Re: Using class on both client and server sides

2009-07-29 Thread Ice13ill
That worked... thanks a lot :) On Jul 29, 6:10 pm, Paul Robinson wrote: > You want this in your gwt.xml file: >     >     > > Note that if any element appears in your gwt.xml, then the > implied client source path is not added for you - so you will need both > of the above. > > Paul > > Ice13

Re: Using class on both client and server sides

2009-07-29 Thread Paul Robinson
You want this in your gwt.xml file: Note that if any element appears in your gwt.xml, then the implied client source path is not added for you - so you will need both of the above. Paul Ice13ill wrote: > Hello, > I'm trying to use a class (let's say Contact) on both client and > serv

Using class on both client and server sides

2009-07-29 Thread Ice13ill
Hello, I'm trying to use a class (let's say Contact) on both client and server sides (packages: com.app.client and com.app.server). For that purpose I created a shared package (com.app.shared) in which to put the Contact class. But gwt (client side) only "sees" classes in com.app.client package. H