I have a collection on xindice like this:
db/event_base/events
If i do a XPath-query on any element other than the root
element on the documents, all works fine.
example: /event[@id='000001']/description[@type='short']
Doing almost the same ting, but requesting the hole
document doesn't work.
example: /event[@id='000001']
parameters are:
$query = "/event[@id='$timetable_array[id]']/description
[@type='short']";
$type = "XPath";
$docCollection = "/db/event_base/events";
$qryResponse = queryCollection($server, $port,
$docCollection, $type, $query);
Frank