Thanks -- I haven't tried JMeter, but I'll look into that. One extra layer of complexity that I have is that I'm using GWT-EXT, so the js is not as simple as GWT.
Meanwhile, I've been able to craft a solution by extending my RPC servlet and overriding the doGet method. Since GWT-RPC calls are handled inside of doPost, I can get past the encoding and decoding of the request, and call my methods directly from the doGet. Then I use HttpClient to make GET requests from my testing suite. It's a bit of extra work, and doesn't cover the encoding/marshalling aspects of performance, but I think it's OK for general purpose. On Jan 8, 3:12 pm, melody <[email protected]> wrote: > I have used JMeter and it tests the load pretty well. > > It creates the as many user threads as you want and then you run the > load test. > > You can also record a simulation of the user interacting with the > application. > > You may wanna try that. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
