Are any of the following XPath expressions acceptable? Using version 2.3.1 eclipselink
@XmlPath("../header/@type") @XmlPath("/root/header/@type") @XmlPath("parent::*/header/@type")
This is mainly in a class that repeats inside an XML document ( /root/tag ), if this is not clear, I will tell.
I'm trying to cross a tree, not down. My other @XmlPath annotations work fine.
source share