I have an xml that looks like this:
<Root>
<tag1>4</tag1>
<tag2>aa</tag2>
<tag3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<anyType xsi:type="xsd:string">bla bla bla</anyType>
<anyType xsi:type="xsd:string">3</anyType>
</tag3>
</Root>
the object generated by xjc is:
public class Root {
@XmlElement(name="tag1")
protected short tag1;
@XmlElement(name="tag2")
protected String tag2;
@XmlElement(name="tag3")
protected Object tag3;
}
when i unmarshal the xml i get some kind of an xml element in tag3. I need something generic to get the values in tag3 into a list.
any ideas?
thanks.