To be really specific im using GWT(2.0)+EJB(3.x)+JPA deployed in GlassFish and using Eclipse Helios J2EE.
I have two entities in my EJB project: the Client and Provider entities. Using RPC I make a call from GWT to the EJB project wich retrives some entities and sends them back to the GWT project. The call is something like this:
GWT calls findClient from EJB wich uses the EntityManager to find a Client entity and returns it to GWT. However when i try to complie my GWT project i get the following
Compiling module com.MYPROJECT
Validating newly compiled units
[ERROR] Errors in 'file:/.....****....../GreetingService.java'
[ERROR] Line 20: No source code is available for type com.MYPROJECT.entities.Client; did you forget to inherit a required module?
[ERROR] Line 26: No source code is available for type com.MYPROJECT.entities.Provider; did you forget to inherit a required module?
[ERROR] Errors in 'file:/C:/workspaces/...***.../GreetingServiceAsync.java'
[ERROR] Line 14: No source code is available for type com.MYPROJECT.entities.Client; did you forget to inherit a required module?
[ERROR] Line 16: No source code is available for type com.MYPROJECT.entities.Provider; did you forget to inherit a required module?