Re: Data formats

2009-06-27 Thread Andreas Karlsson
Hi, why don't you create a class holding all the information which you want to send between the GWT client and the server. like class DataHolder { Date date; Integer firstInteger; Integer secondInteger; String string; } Then you can send an array of this class to the client

Data formats

2009-06-26 Thread Piotr Kirklewski
Hi I'm using RPC in order to send the resultset to the client side. Unfortunately I can't send the Object array which contains Date and Integers as GWT is complaining about Object being to complex and therefore not supported. I need to send the array as String array so I'm loosing my data