Re: Problem import class external path /client/ HELP!

2008-10-08 Thread walden
You need to work on carefully separating classes that will be compiled by the GWT compiler from those that will not. Classes shared between server and client are in the first category. Isolate those under the / client folder before you try to configure your module. Then you won't need any tags

Re: Problem import class external path /client/ HELP!

2008-10-07 Thread Shi
Changing the file: the error is: Compiling module gwt.GwtApplication Computing all possible rebind results for 'gwt.client.GwtApplication' Rebinding gwt.client.GwtApplication Checking rule [ERROR] Unable to find type 'gwt.client.GwtApplication' [ERROR] Hi

Re: Problem import class external path /client/ HELP!

2008-10-07 Thread Lothar Kimmeringer
Shi schrieb: > How should specify the source package in the file .gwt.xml? > I changed the file .gwt.xml: [...] > That's correct, but you need to add all source-paths if you specify source-paths. So now, "client" is missing. Regards, Lothar --~--~-~--~~~---~

Re: Problem import class external path /client/ HELP!

2008-10-07 Thread Shi
Thank you for reply me! How should specify the source package in the file .gwt.xml? I changed the file .gwt.xml: and the error is: Compiling module gwt.GwtApplication Computing all possible rebind results for 'gwt.client.GwtAppli

Re: Problem import class external path /client/ HELP!

2008-10-07 Thread Lothar Kimmeringer
Shi schrieb: > Hi! Mine is a project with the classes (in the package DAO) that > communicate with the database. The problem is that GWT apparently does > not recognize the classes out of /src/client. How do you come to that conclusion? > The compilation of my GWT application from this result: >

Problem import class external path /client/ HELP!

2008-10-07 Thread Shi
Hi! Mine is a project with the classes (in the package DAO) that communicate with the database. The problem is that GWT apparently does not recognize the classes out of /src/client. The struct of my project is: /src/ /src/dao/ /src/to/ /src/client/ /src/server/ /src/public/ The compilation of my

Problem import class external path /client/ HELP!

2008-10-07 Thread Shi
Hi! Mine is a project with the classes (in the package DAO) that communicate with the database. The problem is that GWT apparently does not recognize the classes out of /src/client. The struct of my project is: /src/ /src/dao/ /src/to/ /src/client/ /src/server/ /src/public/ The compilation of my