Not sure why Gatling returns with error message as index 55 is the “F” char (to my best guess). Feel free to correct me if wrong or direct me to the solution.
I’m using on gatling-charts-highcharts-2.0.0-M3a on win 7 (Oracle JDK 7)
Those curly braces have a meaning for your application. You mustn’t remove them: you must urlencode them. curly braces are illegal in a query string.
Check out this page: http://www.w3schools.com/tags/ref_urlencode.asp
There’s even an encoder that you can use there, you’ll see that {97F1C283-AA1C-4734-BA91-5551715EFD47} has to be encoded into:
%7B97F1C283-AA1C-4734-BA91-5551715EFD47%7D
Gatling doesn’t automatically encode the url, but it does so with the queryParams, so if you don’t want to encode yourself upstream like above, you can use: