If it doesn't belong in JSGI, is there a jack specific place in the env
for the request body?
Basically, I'm looking for a sensible way to get
env["jack.input"].read().decodeToString("utf-8") - but since the input
stream has already been read by the time my app has access to it, and
since I can't rewind it, I'm uncertain how to get the request body.
I know the body won't be a string in all cases. Though in cases other
than application/x-www-form-urlencoded and multipart/form-data, it seems
pretty handy to me to be able to get the request body as a string
(without dealing with rewinding the stream).
Thanks for any tips.
Tim