A user is attempting an XPATH expression based on the following xml. He's attempting to set the context node to "s:bla" and trying to get the element matching the namespace "./h:baz". This xpath returns no result node - which is correct, XT and other XML processors, flag the error that h for h:baz is undefined. Should we be flagging the undefined namespace as well too.
<?xml version="1.0"?> <s:bla xmlns:s="some-uri"> <h:foo xmlns:h="some-uri"> 1.1 </h:foo> <h:baz> 2.5 </h:baz> </s:bla> Paul Dick Xalan QE