[
Lists Home |
Date Index |
Thread Index
]
> We see definitively that if there is no prefix in the name used in a
> step, then the null namespace is assigned, not the default namespace.
> That's why expressions like request/title do not return anything when
> those elements are in a non-null default namespace.
So, just to see if I get this right: A default namespace like this:
<?xml version="1.0" encoding="UTF-8"?>
<test xmlns="test">
<container-abc>
...
</container-abc>
</test>
leaves the container-abc element only reachable by some non-abbreviated
syntax like:
//*[name()="container-abc"]
but here:
<?xml version="1.0" encoding="UTF-8"?>
<test xmlns="test" xmlns:t="test">
<container-abc>
...
</container-abc>
</test>
I would get results with
//t:container-abc
Is that right?
-tor
|