Tagged Questions
1
vote
2answers
29 views
JAXB / MOXy: How to set which xpath impl to use?
I use MOXy's @XmlPath("/foo/bar[@baz]").
Elsewhere in the app I need XSLT 2.0 so I included Saxon HA 9.5 on my classpath.
But that caused the XPath fail (doesn't find the nodes, unlike JDK's ...
1
vote
1answer
84 views
Complex XPaths using EclipseLink MOXy and JAXB
I am currently using EclipseLink MOXy 2.4.1 and trying to update an element's value via XPaths.
The input used is :
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<expenseReport>
...
1
vote
1answer
83 views
Reading the same element twice with EclipseLink MOXy
Is it possible to read the same element into two different Java properties using EclipseLink MOXy?
In the below example I'm mapping the <publication> document as a class, and the <date> ...
1
vote
1answer
247 views
eclipselink moxy xpath - Unable to use xml-path expression on a element with a dash in name
I currently use moxy on a project and I'm facing a problem for which I can't find a solution.
I use only a xml mapping file to map a xml received from a client to my java classes.
My problem is that ...
1
vote
1answer
566 views
Unable to unmarshall XML using Jaxb and XMLPath
I have an XML which needs to be mapped to a Java object i.e. a DTO. My XML has some wrapper elements which don't have any java objects in my DTO.. my XML looks something like this
<UseCaseView>
...
1
vote
1answer
437 views
eclipselink moxy xpath - selecting all child elements of the current node or all elements in a document with a particular name
i have this xpath defined for moxy in a jaxb class
@XmlPath("child::*/REG")
public List entries;
but it won't unmarshal the xml document correctly. the List variable called entries is empty.
i've ...
1
vote
1answer
152 views
EclipseLink MOXy @XmlPath support for predicate inequality
Having previously posted EclipseLink MOXy @XmlPath support for axes/parent
I'm still working with @XmlPath annotation and it appears to me predicate inequality isn't supported?
@XmlPath("node[@attr ...
5
votes
1answer
380 views
EclipseLink MOXy @XmlPath support for axes/parent
Are any of the following XPath expressions acceptable? Using version 2.3.1 of eclipselink
@XmlPath("../header/@type")
@XmlPath("/root/header/@type")
@XmlPath("parent::*/header/@type")
Basically ...
1
vote
1answer
616 views
EclipseLink MOXy @XmlPath support for getting element value by attribute value
Using EclipseLink MOXy JAXB implementation, I'm trying to use @XmlPath annotation to get element values based on the value of an attribute of the element. I can't seem to get it to work. Is this ...
3
votes
2answers
247 views
Is there any tool to validate @XmlPath annotations?
Is there any tool to validate @XmlPath annotations used from MOXy JAXB at a specific xml file at compile time from Eclipse or IntelliJIdea java framework or something else?