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 a 'PersonSummary' object populated with those fields. Also consider using a paging strategy allowing the user to retrieve data in more managable chunks. You can try get around the serialisation problem by serialising the payload as a JSON string and deserialising on your client. Cheers, Matt On May 12, 7:00 pm, Carlos <hbazz...@gmail.com> wrote: > 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 List<string> and it didn't make any > differences. > The object am using in the server side is not serializable so i can't > send it as return type. > any suggestions concerning speeding up the performance??? > > thanks in advance. -- You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to google-web-toolkit@googlegroups.com. To unsubscribe from this group, send email to google-web-toolkit+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.