Details
Description
Adding org.apache.cxf.feature.LoggingFeature to Bus feature affects the response header, it adds transfer encoding as chunked, where as without LoggingFeature the content length is set and no transfer encoding set.
<jaxws:features>
<bean class="org.apache.cxf.feature.LoggingFeature" />
</jaxws:features>
Response header when LoggingFeature is added,
HTTP/1.1 200
Content-Type: text/xml;charset=UTF-8
Transfer-Encoding: chunked
Date: Wed, 01 May 2019 05:43:46 GMT
Response header when LoggingFeature is removed,
HTTP/1.1 200
Content-Type: text/xml;charset=UTF-8
Content-Length: 496
Date: Wed, 01 May 2019 06:30:04 GMT
Possible issue may be because converting the original OutputStream to CacheAndWriteOutputStream, I am not able look into further
Attachments
Issue Links
- links to