I'm trying to implement WS-Addressing with Apache CXF 2.7.18. I am able to set some headers like To, Action, etc.. but I want to remove/delete ReplyTo from SOAP request
<Action xmlns="http://www.w3.org/2005/08/addressing">http://...</Action>
<MessageID xmlns="http://www.w3.org/2005/08/addressing">urn:uuid:....</MessageID>
<To xmlns="http://www.w3.org/2005/08/addressing">https://....</To>
<ReplyTo xmlns="http://www.w3.org/2005/08/addressing">
<Address>http://www.w3.org/2005/08/addressing/anonymous</Address>
</ReplyTo>
Does anybody know how to do it?