Think I fixed it.
Don't really want it to unmarshal. Just put it into an element node and I
will get it myself by getting the child nodes.
My workaround:
@XmlMixed
@XmlAnyElement(lax = false)
protected List content;
public List getContent() {
if (content == null) {
content = new ArrayList();
}
return this.content;
}
lax = false seems to be key, otherwise it tries to marshal it into.
--
View this message in context:
http://cxf.547215.n5.nabble.com/Unmarshal-error-tp5712088p5712134.html
Sent from the cxf-user mailing list archive at Nabble.com.