Hi all,

I have a class that I like to store in app engine datastore like:

@Entity
public class Game {
          @Id
          @GeneratedValue(strategy = GenerationType.IDENTITY)
          private Long id;

          private Date latestUpdate;
          private short x, y;
          private List<String> players;
          private Blob board;
...

But when trying to serialize it via the 'RPC Service' wizard in
Eclipse i get code that can not find the 'com.google.appengine'
namespace.

Anyone have any clue how the send Blob, byte[] or int[] from the app
engine to an Android application???

Generics (like List<String>) i get to work but i'd prefer not to do
the conversion all the time from byte[].

Thanks,
Jens

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" 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-appengine?hl=en.

Reply via email to