Could you please provide more information on using enums? I am trying to use
a custom enum type:
public enum PermissionEnum{
...
}
in an EntityProxy as:
PermissionEnum getPermission();
void setPermission(PermissionEnum permission);
The PermissionEnum type is declared in a package that is accessible from
both the server and the client.
When I request an object from the server, it all works fine, but when I try
to send an object to the server for persisting I get a ServerFailure
exception stating that:
Server Error: The requested entity is not available on the server
Does this have anything to do with the use of the enum type?
Cheers
Jerome
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.