Re: GWT : Best practice to send huge amount of data from server to client

2011-08-10 Thread Steve
Lazy loading. Send the data over the wire from the server side as needed in small chunks, and send it pre-processed. I've even gone as far as delimiting the data server side and then just running a split on the client side to fill in the table. If you're dealing with static data, you could also s

Re: GWT : Best practice to send huge amount of data from server to client

2011-08-10 Thread BST
I had a similar requirement. What I am doing now is getting 300 records at a time, and showing on the cell table. When the user clicks on next and if it is the last page I get another set of records using a RemoteService and update the Cell Table. Since I required a different kind of pager, I

Re: GWT : Best practice to send huge amount of data from server to client

2011-08-09 Thread Alain Ekambi
Would not be JSON here better ? What about turning that xml into JSON ? 2011/8/9 Srinivasan Raghavan > Hi > > Try lazy loading instead of sending the XML all to together > > Regards > R.Srinivasan > > > On Tue, Aug 9, 2011 at 4:33 AM, vaibhav bhalke > wrote: > > Hi folks, > > > > Which are the

Re: GWT : Best practice to send huge amount of data from server to client

2011-08-09 Thread Srinivasan Raghavan
Hi Try lazy loading instead of sending the XML all to together Regards R.Srinivasan On Tue, Aug 9, 2011 at 4:33 AM, vaibhav bhalke wrote: > Hi folks, > > Which are the Best practices to send huge amount of data fromĀ  server to > client in GWT? > > Right now we are facing performance issue in G

Odp: Re: GWT : Best practice to send huge amount of data from server to client

2011-08-09 Thread PiotrN
Transmitting that much data will be problematic. I would first seek a way to avoid such transmissions to the client. But if has to be done this way and all the data should be displayed in single "page", they still should be transmitted in chunks, in size of about what one real client screen woul

Re: GWT : Best practice to send huge amount of data from server to client

2011-08-09 Thread George Agiasoglou
Have a look at AsyncDataProvider + SimplePager. -George -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To view this discussion on the web visit https://groups.google.com/d/msg/google-web-toolkit/-/d2h6B2Ei-MYJ. To post to this group, se

Re: GWT : Best practice to send huge amount of data from server to client

2011-08-09 Thread Sean
Can you do the parsing on the Server Side, and only send what needs to be displayed? Have the cell table say, we need records 0-500, send those. Then when they hit next page, have it ask for 501-1000 and etc.,etc., This way you're never sending that much data over the wire, it should be much qu

Re: GWT : Best practice to send huge amount of data from server to client

2011-08-09 Thread mohit ranjan
Somewhere I read this binary serialization + compression -> send it to client Mohit On Tue, Aug 9, 2011 at 5:03 PM, vaibhav bhalke wrote: > Hi folks, > > Which are the Best practices to send huge amount of data from server to > client in GWT? > > Right now we are facing performance issue in GWT

GWT : Best practice to send huge amount of data from server to client

2011-08-09 Thread vaibhav bhalke
Hi folks, Which are the Best practices to send huge amount of data from server to client in GWT? Right now we are facing performance issue in GWT code. Our server side is sending huge xml (Size in MB/GB) to client side, our client side parses that xml and using parsed data, beans are formed for