[google-appengine] Re: Problem using AppEngine and GWT and RPC

2009-10-08 Thread Benjamin
this is caused by returning an attached object. some of the tips are misleading, i thought detachall detached the object - it actually returns a detached copy so i was sorta doing pm.detachcopy(object) return object when i should be doing return pm.detachcopy(object) you can return an attache

[google-appengine] Re: Problem using AppEngine and GWT and RPC

2009-10-07 Thread Benjamin
i'm having the exact same problem. did you ever resolve this? On Sep 22, 7:04 pm, Angel wrote: > I have this class and all run everything works perfectly. > > @PersistenceCapable(identityType = IdentityType.APPLICATION) > public class AlumnRecord extends BaseRecord implements Serializable { > >