My employer uses Playframework 2.4, which uses Netty as it's HTTP handler.
In the application I'm working on, the server rejects some client POSTs (no request body) with an HTTP 400 error.
If I POST the same URL from my REST client, it succeeds. It gets to application controller method mapped to that route.
Therefore, I think Netty is rejecting the client POST. I want to know why Netty doesn't like the request.
Having a Netty access.log would be very helpful for this situation (and future odd situations).
Is there an easy way to add a Java access logging class to the Netty pipeline included in Playframework 2.4?
If so, what would the Java class look like and where would I put it, so Netty would use it?