Stefan Matsson

Results 91 comments of Stefan Matsson

Thanks for bringing this up. I've been meaning to answer this for a couple of weeks now but haven't had the time. It's been a long day, so please forgive...

> Wow, that is an incredible idea you came up with. It is the epitheny of hackiness, but also extremely ingenious! Thank you! That's one of the best compliments I've...

>From reading RFC 9110, I don't see anything speaking against using Content-Location in a 204 response. The RFC commonly refers to cases where the header field is included in 2XX...

Yes let's do that! :)

After thinking some more on this, maybe we should wait for the RUFH spec to be finalized on this subject and then just backport that to tus? It might be...

I updated my tusdotnet RUFH POC to include Content-Location and have written about it on the httpbis' github: https://github.com/httpwg/http-extensions/issues/2312#issuecomment-1871288007 For tus, there are some more specific things that we probably...

Been meaning to answer this for a while but it slipped my mind... > I wonder whether Content-Location will every be part of tus v1 or if we should rather...

Hi! You can call `authCtx.FailRequest(HttpStatusCode, string)` in the `OnAuthorize` callback to return an error to the client. The same applies to all `OnBeforeX` callbacks. See https://github.com/tusdotnet/tusdotnet/wiki/OnAuthorizeAsync-event It seems like you...

Could you give me some code showing what you are trying to do? If you run FailRequest it will stop the execution of the current request. The error indicates that...

Hi! [Resumable Uploads For Http](https://datatracker.ietf.org/doc/draft-ietf-httpbis-resumable-upload/) (working name was "tus2") is new proposed standard by the IETF. The code related to this spec is located in [POC/tus2](https://github.com/tusdotnet/tusdotnet/tree/POC/tus2) and has been verified...