I'm trying to fix an issue re. http response-header: Transfer-Encoding: chunked
We have a CXF-SOAP webservice in spring-boot + embedded-tomcat.
The SOAP-responses get a Content-Length
header, and no Transfer-Encoding
....
which is normal, I guess?
Unfortunately, we have some legacy client-hacks,
that only seem to work with Transfer-Encoding: chunked
and no Content-Length
.
Is there a way to force the server-app to respond with Transfer-Encoding: chunked
?
What exactly determines which response-format is generated?
Is it somehow configurable?