EclipseLink JAXB (MOXy) has the @XmlCDATA annotation for handling CDATA.
When using Moxy and annotating a String value such as
@XmlCDATA
private String payload;
If I run this web service it will work and display with CDATA tags after being processed by JAXB (I do not have control over JAXB processing except through annotations so this is helpful).
As soon as I add an annotation to to call a HandlerChain file e.x.
@HandlerChain(file = "/META-INF/handler-chain.xml")
I will lose my CDATA tags! This particular handler implements SOAPHandler. I've been experimenting and playing around with it but can not get it to keep the CDATA tags. It's as if it's being formatted in the handleMessage() method. Even if this method does nothing, such as return false; or return true; It still loses CDATA tags.