Currently subtext expects the user to have signalled 100-continue for senders that use this. Either implicitly, by not having a server listener for the "checkContinue" event, or explicitly by calling res.writeContinue().
Ideally, the subtext should enable the 100-continue signalling to be deferred until after the internal pre-validation phase. Eg. either split the processing into pre-validation & parsing steps, or add a callback option that signals that pre-validation completed succesfully.
Currently subtext expects the user to have signalled 100-continue for senders that use this. Either implicitly, by not having a server listener for the
"checkContinue"event, or explicitly by callingres.writeContinue().Ideally, the subtext should enable the 100-continue signalling to be deferred until after the internal pre-validation phase. Eg. either split the processing into pre-validation & parsing steps, or add a callback option that signals that pre-validation completed succesfully.