Jens Mallien

Results 25 comments of Jens Mallien

Not sure if I should open a new issue, but since you already talk about async here, I'll give it a try: We also faced an async issue, we needed...

I've just added `asyncSupported = true` to the WebFilter annotation in RequestAccessorFilter. The code in RequestAccessorFilter seems to be working fine asynchronously, the filter is just rejected in async servlets...

Does anyone already know why it is not supported yet? I maybe need that feature. I have already several workarounds in place so I could add another one here in...

I haven't seen this and opened another PR for rewritePath. i like the different approach, using `build(true)` to tell the builder that it is already encoded but maybe there is...

I've written such a Handler but had to copy several classes and using named beans because many spring classes are final, everything is static or private so I can't just...

@rworsnop this would solve it for me, should be easy enough to just pass the `Content-Type` header to the copy method (`Request` object is there). But it would only solve...

I've added the content-type check to my code that I use for some weeks now and put it into the PR. @spencergibb what do you think?

Sorry, the PR is not working, @rworsnop we don't know the content-type, since it is set in the response, which is not avaiable in this place. :(

I have added my solution without the `Content-Type` up for discussion, not sure if it hits performance for big files because of too many flushes?

> @jensmatw Your PR isn't working because you're looking at the server request headers. You need to look at the headers in `clientResponse` available in `doExchange`. Oh I was confused...