HTTPServerRequest.bodyReader

Supplies the request body as a stream.

Note that when certain server options are set (such as HTTPServerOption.parseJsonBody) and a matching request was sent, the returned stream will be empty. If needed, remove those options and do your own processing of the body when launching the server. HTTPServerOption has a list of all options that affect the request body.

class HTTPServerRequest
InputStream bodyReader;

Meta