Can you give an example of how XPath functions such as count() and sum() should be entered in the admin gui as all attempts to use them returns an empty result set. I have several documents stored that comprise
<BatchResponse>
.... more xml data
</BatchResponse>
Entering an XPath selection of count(/BatchResponse) returns an empty result set.
Regards
Logged In: YES
user_id=35410
Originator: NO
try this instead:
/BatchResponse/count(.)
or
/BatchResponse/count(text())