Details
-
Bug
-
Status: Resolved
-
Resolution: Fixed
-
2.0.0
-
None
-
None
-
Operating System: Windows NT/2K
Platform: PC
-
7435
Description
for the following xml file:
-
-
-
- test.xml ****
<?xml version="1.0"?>
<test>
<hello>
<bye>
</bye>
</hello>
</test>
- test.xml ****
-
-
when running the xtags taglibs that use xalan in the following manner:
-
-
-
- test.jsp ****
<xtags:parse uri="test.xml" />
<xtags:stylesheet>
<xtags:template match="hello|bye">
position:<xtags:valueOf select="position()"/><br>
</xtags:template>
</xtags:stylesheet>
- test.jsp ****
-
-
-
-
-
- output ****
position:0<br>
- output ****
-
-