when building up the xpath to use to determine which node should be retrieved as the current page for a given url the xpath inlcludes an "or" statement that will return /root/*
this is obtained from the following xpath /root/* [@urlName = "test-container"] | /root/*
i.e. if the exact node can't be found return all descendants of root.
requestHandler.CreateXPathQuery generate XPATH
when building up the xpath to use to determine which node should be retrieved as the current page for a given url the xpath inlcludes an "or" statement that will return /root/*
this is obtained from the following xpath /root/* [@urlName = "test-container"] | /root/*
i.e. if the exact node can't be found return all descendants of root.
Is there a specific reason why this is done?
is working on a reply...