GWT RPC with large data arrays

2011-07-21 Thread Daniel Peterson
I'm trying to transmit large amounts of data from my server to my client using the Asynchronous RPC calls. I've noticed that for these arrays often take quite a long period of time to transmit. I'm only sending four sets of data, but containing several hundred (to perhaps a thousand) points each.

Re: GWT RPC with large data arrays

2011-07-21 Thread Juan Pablo Gardella
I think you can zip the data. 2011/7/21 Daniel Peterson dannothete...@gmail.com I'm trying to transmit large amounts of data from my server to my client using the Asynchronous RPC calls. I've noticed that for these arrays often take quite a long period of time to transmit. I'm only sending

Re: GWT RPC with large data arrays

2011-07-21 Thread Jeff Larsen
I agree that gzipping the data probably makes sense also I think that if you were to use JSON you'd see a marked improvement. You can test that theory out using RequestFactory, it uses JSON as the serialization technique. -- You received this message because you are subscribed to the Google