PDA

View Full Version : Is there any better way to handle the large number of data from webservice?


thenongt
05-30-2007, 02:10 AM
I'm newbie in OL.

I use SOAP component to connect to the webservice. It take very long response time when transfering large amount of data and "ondata" event has never occured until all data returned.

So, can I early get the data while all data was not complete returned? Currently I'm using grid to show those data. I know that it use the "lazy replication" but the "ondata" event has never occured until all data returned.

I'm not sure if I'm going to the right way thinking as this. So if somebody have any other suggestion I'm always welcome.

PS. If somebody know about the maximum of data that grid can handle please suggest me. Or do I need to worry about that? :confused:

Thanks every body.

superkarlito
05-30-2007, 03:09 AM
PS. If somebody know about the maximum of data that grid can handle please suggest me. Or do I need to worry about that?

I don't know about grids, but for RPC calls, there seems to be a 64k limit, if it reaches that, the RPC call won't work.

thenongt
05-30-2007, 09:38 PM
Thank you, that answered all my question.

Regarding to this thread: http://forum.openlaszlo.org/showthread.php?t=6350
I have to change my way by not getting all data at once.