This could be because of the memory used byt the browser. We've seen this kind of problem with one application. Load time grew up very fast in IE6, a bit slower with IE8, and really slower with Firefox.
When we studied that, we found that each RPC call caused memory allocation (about 160M with IE, 30M with FF, yes the transfered data is huge). It may be because you have some memory leaks in your apps (you have some reference to your data that is kept somewhere) and the repeated memory allocation causes perf slowdowns. But that not sure of course... --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Google Web Toolkit" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/google-web-toolkit?hl=en -~----------~----~----~----~------~----~------~--~---
