Hello,
We are using
Web OpenAPI to build a router from an OpenAPI file.
In this API there is an operation which Request body content type is "application/octet-stream"
We would like to use the Request body as readStream (for piping,..)
The BodyHandler seems to be mandated by WebOpenAPI. So the Body is fully read before our own handler is called :(
How could we disable this body handling?
Could we use an custom BodyHandler?
Thanks
David