[jdom-interest] XPath and Entity References
Steve Condas
scondas at yahoo.com
Fri Sep 24 08:36:40 PDT 2004
I am having some XPath trouble and I can't seem to find good answers after searching the internet, so I am hoping that someone here has a good idea. I have a document that looks like:
<Test>
<Railroad>
<Name>B&O</Name>
</Railroad>
<Railroad>
<Name>Reading</Name>
</Railroad>
<Test>
My UI wants to find B&O railraod. Naively I did the following XPath:
/Test/Railroad[Name='B&O']
But this didn't work agains my XML database (NeoCore XMS). I then changed the XPath to
/Test/Railroad[Name='B&O']
and it worked. This leads to two questions:
1) Do the specs say I have to expand entity references in my XPath query?
2) Is there any way I can use JDOM or JDOM XPath to do the expansion for me, kind of in the spirit that Element.setText() and XMLOutputter expand them for me?
Thanks in advance,
Steve
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://servlets.com/pipermail/jdom-interest/attachments/20040924/1a5da408/attachment.htm
More information about the jdom-interest
mailing list