I'd having an issue that doesn't seem to have a good solution.
I need to read the body of a request to get the JSON payload. When I do this locally (the server running on the same machine as the web browser), request.readyBody() works just fine. When the server is on a machine where there is a bit of network latency, readyBody() only returns part of the body. This is understandable. However, trying to use the end() signal isn't working, because locally, the signal is sent before the connect completes, and therefor 'hangs' (using a lambda).
A better solution would be for there to be a readBodyFull() on request, where Tufao itself could handle this better.
Any ideas? Thanks.