I'm using GWT-GAE and faced a bad issue dealing with RPC Can't use Entity Classes on the Server Side within the Client Side
I checked this first answer for that question [here]
but the solution will cause other errors and It's too hard to Implement
So is that a problem to Import server side classes into Client Side classes cuz there is a guy said in the link included above he said : There are a couple of things to keep in mind about GWT: Server-side classes can import client-side classes, but not vice-versa (usually). The client-side can't import any Google App Engine libraries (i.e. com.google.appengine.api.users.User)
is that true if so how to overcome this problem I have to use server side classes in the client interface
Hint: I'm Using JDO and No-SQL database (GAE Datastore)
Thanks in Advance