Speeding up RPC response

2011-05-12 Thread Carlos
hello, am using String[] as returned type all the RPC calls and sometimes this array of strings is of size 3000 which makes it somehow slow, it takes over 5 to 6 sec i used Liststring and it didn't make any differences. The object am using in the server side is not serializable so i can't send it

Re: Speeding up RPC response

2011-05-12 Thread matttai
Hi Carlos, What is the object types that you are returning from the server? If possible try breaking up the object and return only the fields that you need eg. If you have 3000 Person objects and you only require their firstName + LastName only, then populate only those fields on query or create

Re: Speeding up RPC response

2011-05-12 Thread Steve
No matter what you do, if you're getting a large amount of data from the server it's going to take time to transfer the data *and* to have the data transformed into client-usable code. There are a couple of ways we've gotten around long server calls -- First of all, as mattai says, if you know