defect
Problem
Passing values for query parameters of type Date does not work because the passed string value cannot be parsed.
As a result, the query returns the error message: "Invalid format in parameter ..." and a ClassCastException is logged.
This is caused by an error in the query argument parser, which incorrectly calls `format()` instead of `parse()` on the string value.
Intended
The passed value should be parsed into a date.
Test
TestServerClient.script.xml