I have a large scale GWT Application and I wanted to perform load testing on it. After trying jmeter and a lot of plugins with it I finally thought I should instead figure out how to make the RPC response readable so that I can use the response along with Regular Expression Extractor to proceed with my testing instead of using the plugins. So is there a way I could convert the response into readable format?
Here is a sample response:
//OK[2,1,["com.google.gwt.safehtml.shared.SafeHtmlString/235635043","Hello,
Hello!<br>I am running jetty-6.1.x.<br><br>It looks like you are using:
Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.4 (KHTML, like
Gecko) Chrome/22.0.1229.94 Safari/537.4"],0,7]
I am more interested in doing so for GWT 2.8+ Applications whereas almost all the sources found online give information on the older versions.