I want to store (and send) an array of integers in the app engine data store and have created a class as follows:
@Entity
public class GrodxData {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
private long id;
private int[] minaintar;
...
Then I run the RPC Servcie Wizard and all is completed without any message. But the GrodxDataProxy-proxy class contains errors

With the message being The type int[] cannot be used here .
My understanding form reading
is that you should be able to transmit arrays of basic types.
I have been able to get ArrayList<int> to generate compilable code, but this is not optimal as my array is fixed size.
If anyone have any suggestion on how to proceed I'd be more than happy.
Thanks,
Jens Axelsson