First of all,
many thanks to Craig for the excellent answer below which I found very useful when searching my original issue... ref: http://stackoverflow.com/questions/2237142/gwt-simple-rpc-use-case-problem-code-included
Building on this solution, how does one overcome the (seemingly GWT limitation) where if i leave my persistable object in /shared folder as Craig suggests... and annotate it as GWT tutorials suggest...
@PersistenceCapable
public class Employee {
@PrimaryKey
@Persistent(valueStrategy = IdGeneratorStrategy.IDENTITY)
private Key key;
GWT is seemingly unable to deal with / import the com.google.appengine.datastore.key on the client side?
I have seen a few ugly hacks...but nothing elegant.
Any suggestions welcome, Thanks