Kevin Davis
Kevin Davis
HTTP error code `411` indicates that a file length is required and either not present or incorrect. https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/411 I recommend looking into that status code first.
Without more information, and possible a [minimal reproducible example](https://en.wikipedia.org/wiki/Minimal_reproducible_example), I'm not sure where to begin. The exception you are seeing is part of the general `RuntimeException` handling and appears to...
`BodyTemplate` is meant for at most, the simplest of use cases. Anything else should be done using an `Encoder` instance. What you are trying is technically possible with `BodyTemplate`, but...
Please feel free.
Thanks for finding this. Open to pull requests to update our documentation.
Thank you for your proposal and it seems like a reasonable addition. I recommend creating a pull-request to get direct feedback on your implementation.
Yes, that will happen with larger files when the return type of the proxied method is `Response`. This is so we can provide a complete object back to the caller....
Calling `query` as you've specified is the correct usage to clear a query value. ```java public RequestTemplate query(String name, String... values) { if (values == null) { return query(name, Collections.emptyList());...
You've done quite a bit of work here and #2247 was added almost a year ago. Care to try to submit a pull-request and submit a fix for this?
@parthiv-groww looks like @gromspys has provided you with enough information to get you going again. In the future, questions like this are more appropriate for Stack Overflow, as we prefer...