Hi, I am analysing NPE for case of non-empty oneWay operation response.
Digging into HTTPConduit code I found two situations where non-empty oneWay response is interpreted as valid in- message and processed: 1. oneWay chunked partial response 2. twoWay decoupled partial response Criteria to process this responses even if exchange is onWay are: HttpHeaderHelper.TRANSFER_ENCODING = HttpHeaderHelper.CHUNKED or HttpHeaderHelper.CONNECTION = HttpHeaderHelper.CLOSE Just curious what is the real use case for client to process oneWay responses? Is it standard or CXF extensions? Regards, Andrei.
