This content has been marked as final.
Show 1 reply
-
1. Re: Error signing message: element has a relative namespace
hnqoliveira Apr 14, 2010 5:19 PM (in response to hnqoliveira)I solved this problem changing the annotations:
@XmlElement
ClassA {
}
@XmlElement
ClassB extends ClassA {
}
ClassContainer {
@XmlElements( @XmlElement(type=ClassA.class) )
private ClassA classA;
}
Thanks