Hello,
I am using a custom ResponseHandler.
The documentation states you can ignore the MessageBodyWriter (Jackson in
my case) by setting the following property:
message.getExchange().put("ignore.response.writers", true);
I am setting the property but Jackson is still handling the serialization.
Is there something else I should be aware of?
I can confirm my ResponseHandler is getting called and I am returning a
null from this method.
http://cxf.apache.org/docs/jax-rs-filters.html#JAX-RSFilters-IgnoringJAXRSMessageBodyWriters
I am using CXF v2.5.2.
Many thanks!
Justin