Tagged Questions
The jxpath tag has no wiki summary.
8
votes
2answers
619 views
Create an immutable list from a java.lang.Iterator
I'm using a library (JXPath) to query a graph of beans in order to extract matching elements. However, JXPath returns groups of matching elements as an instance of java.lang.Iterator and I'd rather ...
2
votes
2answers
144 views
What's the best way to wrap an XPath language/interface over POJOs?
I'd like to expose a tree of POJOs via a simple "XPath" like language so that users can do something like /purchaseOrder/location[@city = 'Mountain View']?
2
votes
3answers
425 views
Is it possible to transform javabeans with XSLT and JXPath?
Suppose I have a vanilla javabean:
class Person {
String firstName;
String lastName;
...
}
Now suppose I want to transform this into another javabean:
class Human {
String name;
...
}
...
1
vote
1answer
40 views
JxPath: evaluation of '' = 0
I am evaluating the expression '' = 0 in JxPath 1.3, and I expect the result to be false. This is my code:
JXPathContext.newContext(ctaSectionABean).getValue("'' = 0");
However, the result returned ...
1
vote
1answer
45 views
JXPath to filter SOAP message
I'm trying to extract the value of the node GoodEmail from a SOAP response. It seems that no matter what I try, I always get a org.apache.commons.jxpath.JXPathNotFoundException.
SOAP response:
...
1
vote
1answer
59 views
java jsonxpth parsing json jumping to node
I have the following data and i am using "http://commons.apache.org/jxpath/" i want to directly read the coordinates: [51.464426 -0.382974] which is lat,lng how can i read this any quick example i ...
1
vote
2answers
906 views
Using JXPath to Query a List
I have a simple class (for testing purposes) that I am trying to Query against using JXPath.
I create a list of various animal objects, and I want to get an Iterator for:
All Animals where ...
0
votes
2answers
54 views
How to evaulate xpath expression using JXpath library
I'm using apache JXPath library to parse an XML. I'm trying to find an API in JXPath which does similar function as XPath evaluate, i.e. check if the xpath expression exists ? Its similar in the lines ...
0
votes
0answers
11 views
JXPATH returning nodes with no children
Hello: I have the following xpath:
.[code='YY']/stations/epochs
This will return all epochs in a station in a network with code=YY. Some networks do not have station, for instance network with ...
0
votes
1answer
100 views
Issue with XML parsing using Commons JXPath
I'm trying to parse a XML using Apache Commons JXPath. But for some reason, its not able to identify the child nodes after the xml is being parsed. Here's the sample code :
private static void ...
0
votes
1answer
60 views
How to get the first elements of object arrays in a list with jxpath?
List alma = new ArrayList();
alma.add(new Object[] { "alma", "korte" });
alma.add(new Object[] { "alma2", "korte2" });
alma.add(new Object[] { "alma3", "korte3" });
JXPathContext context = ...