Dear all!

gwt encourages(forces) you to have following strcuture for writing a
rpc service:

- package.client:
  - Service
  - ServiceAsync
- package.server:
  - ServiceImpl implements Service
- package.shared:
  - Bean

so at the end when i compile the server side code i get:
- package.client
  - Service.class
- package.server
  - ServiceImpl.class
- package.shared
  - Bean.class

so i get compiled classes from my client code. which is not nice!
why not to have the interfaces in the shared package?
when i try to move the interface eclipse complains with an error that
the Async class is not there (because it is now i another package),
this seems to be just a synthetic error. any way how to disable it?
any ideas how to improve this?

thanks
Michael

-- 
You received this message because you are subscribed to the Google Groups 
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.

Reply via email to