Hi Guys,
I have a vert.x server with HttpServerOptions#setDecompressionSupported(true) but ctx.getBodyAsJson() fails with "Json body application/json parsing error: Failed to decode:Illegal character" seemingly trying to parse compressed body.
In the client I compress the request body with gzip and set the Content-Encoding header to gzip.
What's weird is that I have a JUnit test where I instantiate the HttpServer and do test requests and decompression works fine. The failure only appears when I am running the server from a (fat) jar file. Any help will be greatly appreciated.