[
https://issues.apache.org/jira/browse/CXF-8032?focusedWorklogId=281899&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-281899
]
ASF GitHub Bot logged work on CXF-8032:
---------------------------------------
Author: ASF GitHub Bot
Created on: 24/Jul/19 12:19
Start Date: 24/Jul/19 12:19
Worklog Time Spent: 10m
Work Description: dkulp commented on pull request #568: CXF-8032 - Adding
LoggingFeature enables chunking response
URL: https://github.com/apache/cxf/pull/568
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
Issue Time Tracking
-------------------
Worklog Id: (was: 281899)
Time Spent: 20m (was: 10m)
> Adding LoggingFeature enables chunking response
> -----------------------------------------------
>
> Key: CXF-8032
> URL: https://issues.apache.org/jira/browse/CXF-8032
> Project: CXF
> Issue Type: Bug
> Components: logging
> Affects Versions: 3.3.1
> Environment: OS - Windows 10
> Java - 1.8.0_181
> Tomcat - 8.5
> CXF - 3.3.1
> Reporter: karthic
> Priority: Major
> Labels: triaged
> Time Spent: 20m
> Remaining Estimate: 0h
>
> 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
--
This message was sent by Atlassian JIRA
(v7.6.14#76016)