I'm not sure if this is a GWT issue or a GAE issue.
However, I have used the remote api to initialize my database. When I query
via the remote api I get back all the data including the version just fine.
 The problem is when I am trying to get data from my entity all the fields
are ok except the version field.  I am using an entity proxy with request
factory for GWT.

@Version
@Column(name = "version")
private Integer version;

public Integer getVersion() {
  return this.version;
}

public void setVersion(Integer version) {
  this.version = version;
}

I also have this in my locator:

@Override
public Object getVersion(Country domainObject) {
  return domainObject.getVersion();
}


Regards,
Pavel

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to google-appengine@googlegroups.com.
To unsubscribe from this group, send email to 
google-appengine+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to