VS7 Co - 2013-09-18 14:00:12
GET request MUST not contain any body.
Even if we have empty $parameters we have header "Content-Length" and "[]" as body (in case of json). LiteSpeed throws 400 error.
Replace lines 1286-1290 with:
if(!IsSet($options['RequestBody']) && !empty($parameters))
{
$arguments['Body'] = json_encode($parameters);
}
break;