Dear Michael
In the functions glossary (page 404) I'm trying to understand the example:
Code:
<doc xmlns:one="one.uri" xmlns="default.uri">
<chap xmlns="" att-one="text">
<data-one>one:value</data-one>
<data-two>value</data-two>
</chap>
</doc>
variables:
$chap /doc/chap
$data1 /doc/chap/data-one
$data2 /doc/chap/data-two
You then show
Code:
resolve-QName(Schap/@att-one, $chap)
as returning (in Clark notation)
.
I don't follow, isn't there no default namespace on $chap so the function returns
, or have I misunderstood?
--
Joe